/sys 20000000775 sys sys 793212403 0 /sys/include 20000000775 sys sys 786213332 0 /sys/include/alef 20000000775 sys sys 782420930 0 /sys/include/alef/alef.h 664 sys sys 792530435 6891 #pragma src "/sys/src/alef/lib" #pragma lib "/$M/lib/alef/libA.a" /* * definitions common to Plan 9 & Unix */ typedef usint Rune; enum { ERRLEN = 64, /* open */ OREAD = 0, OWRITE = 1, ORDWR = 2, OEXEC = 3, OTRUNC = 16, OCEXEC = 32, ORCLOSE = 64, }; /* Runtime system constants settable by applications */ extern int ALEFstack; extern int ALEFrfflag; extern void (*ALEFcheck)(byte*, byte*); aggr Arg { byte *arg0; int ac; byte **av; byte *p; }; /* common utility functions and system calls */ void abort(void); int access(byte*, int); int alarm(uint); byte *argf(Arg*); Arg *arginit(int, byte**); Rune argopt(Arg*); int atoi(byte*); int brk(void*); int chdir(byte*); int close(int); int errstr(byte*); int exec(byte*, byte**); int execl(byte*, ...); void exits(byte*); void _exits(byte*); void fatal(byte*, ...); int fork(void); byte* getenv(byte*); int getpid(void); int getppid(void); byte *getuser(void); void qsort(void*, int, int, int (*)(void*, void*)); int rfork(int); int open(byte*, int); int pipe(int*); int read(int, void*, int); int readn(int, void*, int); #define read9p read int rendezvous(void*, uint); void* sbrk(uint); int sleep(int); int tokenize(byte*, byte**, int); void terminate(byte*); void werrstr(byte*, ...); int write(int, void*, int); #define write9p write int atexit(void(*)(void)); void atexitdont(void(*)(void)); /* * time routines */ byte* ctime(int); /* * print routines */ aggr Printspec { void *o; int f1, f2, f3; int chr; byte *out; byte *eout; }; int print(byte*, ...); int fprint(int, byte*, ...); int sprint(byte*, byte*, ...); int snprint(byte*, int, byte*, ...); byte* doprint(byte*, byte*, byte*, void*); void strconv(Printspec*, byte*); int fmtinstall(int, int (*)(Printspec*)); /* * mem routines */ void* memccpy(void*, void*, int, uint); void* memset(void*, int, uint); int memcmp(void*, void*, uint); void* memcpy(void*, void*, uint); void* memmove(void*, void*, uint); void* memchr(void*, int, uint); /* * string routines */ byte* strcat(byte*, byte*); byte* strchr(byte*, byte); int strcmp(byte*, byte*); byte* strcpy(byte*, byte*); byte* strdup(byte*); byte* strncpy(byte*, byte*, int); int strncmp(byte*, byte*, int); byte* strrchr(byte*, byte); int strlen(byte*); byte* strstr(byte*, byte*); float strtof(byte*, byte**); int strtoi(byte*, byte**, int); uint strtoui(byte*, byte**, int); /* * math */ float Inf(int); float NaN(void); int abs(int); float acos(float); float asin(float); float atan(float); float atan2(float, float); float ceil(float); float cos(float); float cosh(float); float exp(float); float fabs(float); float floor(float); float fmod(float, float); float frexp(float, int*); uint getfcr(); uint getfsr(); float hypot(float, float); int isInf(float, int); int isNaN(float); float ldexp(float, int); float log(float); float modf(float, float*); float pow(float, float); float pow10(int); void setfcr(uint); void setfsr(uint); float sin(float); float sinh(float); float sqrt(float); float tan(float); float tanh(float); #define HUGE 3.4028234e38 #define PIO2 1.570796326794896619231e0 #define PI (PIO2+PIO2) /* * memory allocation */ void *malloc(uint); void free(void*); void *realloc(void*, uint); /* * rune routines */ enum { UTFmax = 3, /* maximum bytes per rune */ Runesync = 0x80, /* cannot represent part of a UTF sequence (<) */ Runeself = 0x80, /* rune and UTF sequences are the same (<) */ Runeerror = 0x80, /* decoding error in UTF */ }; int runetochar(byte*, Rune*); int chartorune(Rune*, byte*); int runelen(int); int fullrune(byte*, int); /* * rune routines from converted str routines */ int utflen(byte*); /* was countrune */ byte *utfrune(byte*, int); byte *utfrrune(byte*, int); byte *utfutf(byte*, byte*); /* * random number generators */ void srand(uint); int lrand(void); int nrand(int); float frand(void); /* common adt's */ /* * synchronisation */ adt Lock { int val; void lock(*Lock); void unlock(*Lock); int canlock(*Lock); }; adt QLock { Lock use; int used; void *queue; void lock(*QLock); void unlock(*QLock); int canlock(*QLock); }; adt RWlock { Lock; QLock x; QLock k; int readers; void Rlock(*RWlock); void Runlock(*RWlock); void Wlock(*RWlock); void Wunlock(*RWlock); }; adt Ref { Lock l; int cnt; int inc(*Ref); int dec(*Ref); int ref(*Ref); }; /* --CUT HERE-- * Definitions specific to Plan 9 */ enum { NAMELEN = 28, DIRLEN = 116, /* bind/mount */ MORDER = 0x0003, MREPL = 0x0000, MBEFORE = 0x0001, MAFTER = 0x0002, MCREATE = 0x0004, MMASK = 0x0007, /* notes */ NCONT = 0, NDFLT = 1, /* rfork */ RFNAMEG = (1<<0), RFENVG = (1<<1), RFFDG = (1<<2), RFNOTEG = (1<<3), RFPROC = (1<<4), RFMEM = (1<<5), RFNOWAIT = (1<<6), RFCNAMEG = (1<<10), RFCENVG = (1<<11), RFCFDG = (1<<12), /* File modes */ CHDIR = 0x80000000, CHAPPEND= 0x40000000, CHEXCL = 0x20000000, CHREAD = 0x4, CHWRITE = 0x2, CHEXEC = 0x1, PNPROC = 1, PNGROUP = 2 }; aggr Notemsg { byte note[ERRLEN]; }; union Length { byte clength[8]; aggr { int hlength; int length; }; }; aggr Qid { uint path; uint vers; }; aggr Dir { byte name[NAMELEN]; byte uid[NAMELEN]; byte gid[NAMELEN]; Qid qid; uint mode; int atime; int mtime; Length; usint type; usint dev; }; aggr Waitmsg { byte pid[12]; byte time[3*12]; byte msg[ERRLEN]; }; aggr Tm { int sec; int min; int hour; int mday; int mon; int year; int wday; int yday; byte zone[4]; }; /* * Plan 9 system calls */ int bind(byte*, byte*, int); int brk_(void*); int create(byte*, int, uint); int dup(int, int); int fauth(int, byte*); int fsession(int, byte*); int fstat(int, byte*); int fwstat(int, byte*); int mount(int, byte*, int, byte*); int noted(int); int notify(void(*)(void*, byte*)); int postnote(int, int, byte*); int remove(byte*); int seek(int, uint, int); int segattach(int, byte*, void*, uint); int segbrk(void*, void*); int segdetach(void*); int segflush(void*, uint); int segfree(void*, uint); int stat(byte*, byte*); int unmount(byte*, byte*); int wait(Waitmsg*); int wstat(byte*, byte*); /* * Directory access */ int convM2D(byte*, Dir*); int convD2M(Dir*, byte*); int dirfstat(int, Dir*); int dirfwstat(int, Dir*); int dirread(int, Dir*, int); int dirstat(byte*, Dir*); int dirwstat(byte*, Dir*); /* * Network dialing and authentication */ #define NETPATHLEN 40 int accept(int, byte*); int announce(byte*, byte*); int dial(byte*, byte*, byte*, int*); int hangup(int); int listen(byte*, byte*); byte* netmkaddr(byte*, byte*, byte*); int reject(int, byte*, byte*); int encrypt(void*, void*, int); int decrypt(void*, void*, int); /* * Time routines */ byte* asctime(Tm*); Tm* gmtime(int); Tm* localtime(int); uint mstime(); int time(void); /* * Miscellaneous Plan 9 functions */ byte *getwd(byte*, int); int putenv(byte*, byte*); void syslog(int, byte*, byte*, ...); int times(int*); /sys/include/alef/bio.h 664 sys sys 787088098 1430 #pragma src "/sys/src/alef/lib/libbio" #pragma lib "/$M/lib/alef/libbio.a" enum { Bsize = 4096, Bungetsize = 4, /* space for ungetc */ Bmagic = 0x314159, Beof = -1, Bbad = -2, Binactive = 0, /* states */ Bractive, Bwactive, }; adt Biobufhdr { QLock; int icount; /* neg num of bytes at eob */ int ocount; /* num of bytes at bob */ int nrdline; /* num of bytes after rdline */ int runesize; /* num of bytes of last getrune */ int state; /* r/w/inactive */ int fid; /* open file */ extern int flag; /* magic if malloc'ed */ int off; /* offset of buffer in file */ int bsize; /* size of buffer */ byte* bbuf; /* pointer to beginning of buffer */ byte* ebuf; /* pointer to end of buffer */ intern int iflush(*Biobufhdr); int buffered(*Biobufhdr); int term(*Biobufhdr); int fildes(*Biobufhdr); int flush(*Biobufhdr); int getc(*Biobufhdr); int getrune(*Biobufhdr); int inits(*Biobufhdr, int, int, byte*, int); int linelen(*Biobufhdr); int offset(*Biobufhdr); int print(*Biobufhdr, byte*, ...); int putc(*Biobufhdr, int); int putrune(*Biobufhdr, int); void* rdline(*Biobufhdr, int); int read(*Biobufhdr, void*, int); int seek(*Biobufhdr, int, int); int ungetc(*Biobufhdr); int ungetrune(*Biobufhdr); int write(*Biobufhdr, void*, int); }; adt Biobuf { Biobufhdr; extern byte b[Bungetsize+Bsize]; int init(*Biobuf, int, int); }; Biobuf* Bopen(byte*, int); void batexit(void); /sys/include/alef/fcall.h 664 sys sys 783046138 2100 #pragma src "/sys/src/alef/lib/p9" enum { DOMLEN= 48, /* length of an authentication domain name */ DESKEYLEN= 7, /* length of a des key for encrypt/decrypt */ CHALLEN= 8, /* length of a challenge */ TICKETLEN= (CHALLEN+2*NAMELEN+DESKEYLEN+1), AUTHENTLEN= (CHALLEN+4+1), }; aggr Fcall { byte type; sint fid; usint tag; union { aggr { usint oldtag; /* T-Flush */ Qid qid; /* R-Attach, R-Walk, R-Open, R-Create */ byte rauth[AUTHENTLEN]; /* R-Attach */ }; aggr { byte uname[NAMELEN]; /* T-Auth, T-Attach */ byte aname[NAMELEN]; /* T-Attach */ byte ticket[TICKETLEN]; /* T-Attach */ byte auth[AUTHENTLEN]; /* T-Attach */ }; aggr { byte ename[ERRLEN]; /* R-Error */ byte authid[NAMELEN]; /* R-Session */ byte authdom[DOMLEN]; /* R-Session */ byte chal[CHALLEN]; /* T-Session/R-Session */ }; aggr { uint perm; /* T-Create */ sint newfid; /* T-Clone, T-Clwalk */ byte name[NAMELEN]; /* T-Walk, T-Clwalk, T-Create */ byte mode; /* T-Create, T-Open */ }; aggr { int offset; /* T-Read, T-Write */ int count; /* T-Read, T-Write, R-Read */ byte *data; /* T-Write, R-Read */ }; aggr { byte stat[DIRLEN]; /* T-Wstat, R-Stat */ }; }; }; enum { MAXFDATA = 8192, MAXMSG = 128, MAXRPC = 8192+128, Tmux = 48, Rmux, /* illegal */ Tnop = 50, Rnop, Tosession = 52, /* illegal */ Rosession, /* illegal */ Terror = 54, /* illegal */ Rerror, Tflush = 56, Rflush, Toattach = 58, /* illegal */ Roattach, /* illegal */ Tclone = 60, Rclone, Twalk = 62, Rwalk, Topen = 64, Ropen, Tcreate = 66, Rcreate, Tread = 68, Rread, Twrite = 70, Rwrite, Tclunk = 72, Rclunk, Tremove = 74, Rremove, Tstat = 76, Rstat, Twstat = 78, Rwstat, Tclwalk = 80, Rclwalk, Tauth = 82, /* illegal */ Rauth, /* illegal */ Tsession = 84, Rsession, Tattach = 86, Rattach, Tmax, }; int convM2S(byte*, Fcall*, int); int convS2M(Fcall*, byte*); int convM2D(byte*, Dir*); int convD2M(Dir*, byte*); int fcallconv(Printspec*); int dirconv(Printspec*); int dirmodeconv(Printspec*); /sys/include/alef/frame.h 664 sys sys 787088138 2208 #pragma src "/sys/src/alef/lib/libframe" #pragma lib "/$M/lib/alef/libframe.a" aggr Frbox { int wid; /* in pixels */ int nrune; /* <0 ==> negate and treat as break char */ union{ byte *ptr; aggr { sint bc; /* break char */ sint minwid; }; }; }; aggr Frame { Font *font; /* of chars in the frame */ Bitmap *b; /* on which frame appears */ Rectangle r; /* in which text appears */ Rectangle entire; /* of full frame */ Frbox *box; void (*scroll)(Frame*, int); /* scroll function provided by application */ uint p0; uint p1; /* selection */ sint left; /* left edge of text */ usint nbox, nalloc; usint maxtab; /* max size of tab, in pixels */ usint nchars; /* # runes in frame */ usint nlines; /* # lines with text */ usint maxlines; /* total # lines in frame */ usint lastlinefull; /* last line fills frame */ usint modified; /* changed since frselect() */ }; uint frcharofpt(Frame*, Point); Point frptofchar(Frame*, uint); int frdelete(Frame*, uint, uint); void frinsert(Frame*, Rune*, Rune*, uint); void frselect(Frame*, Bitmap*, Mouse*); void frselectp(Frame*, Bitmap*, Fcode); void frselectf(Frame*, Point, Point, Bitmap*, Fcode); void frinit(Frame*, Rectangle, Font*, Bitmap*); void frsetrects(Frame*, Rectangle, Bitmap*); void frclear(Frame*); void frgetmouse(void); byte *_frallocstr(uint); void _frinsure(Frame*, int, uint); Point _frdraw(Frame*, Point); void _frgrowbox(Frame*, int); void _frfreebox(Frame*, int, int); void _frmergebox(Frame*, int); void _frdelbox(Frame*, int, int); void _frsplitbox(Frame*, int, int); int _frfindbox(Frame*, int, uint, uint); void _frclosebox(Frame*, int, int); int _frcanfit(Frame*, Point, Frbox*); void _frcklinewrap(Frame*, Point*, Frbox*); void _frcklinewrap0(Frame*, Point*, Frbox*); void _fradvance(Frame*, Point*, Frbox*); int _frnewwid(Frame*, Point, Frbox*); void _frclean(Frame*, Point, int, int); void _frredraw(Frame*, Point); void _fraddbox(Frame*, int, int); Point _frptofcharptb(Frame*, uint, Point, int); Point _frptofcharnb(Frame*, uint, int); int _frstrlen(Frame*, int); extern Bitmap* frones; #define NRUNE(b) ((b)->nrune<0? 1 : (b)->nrune) #define NBYTE(b) strlen((byte*)(b)->ptr) /sys/include/alef/libg.h 664 sys sys 787088275 6679 #pragma src "/sys/src/alef/lib/libg" #pragma lib "/$M/lib/alef/libg.a" /* * Types */ aggr Point { int x; int y; }; aggr Rectangle { Point min; Point max; }; aggr Bitmap { Rectangle r; /* rectangle in data area, local coords */ Rectangle clipr; /* clipping region */ int ldepth; int id; Bitmap *cache; /* zero; distinguishes bitmap from layer */ }; aggr Mouse { int buttons; Point xy; uint msec; }; aggr Cursor { Point offset; byte clr[2*16]; byte set[2*16]; }; aggr Linedesc { int x0; int y0; byte xmajor; byte slopeneg; int dminor; int dmajor; }; adt Menu { extern byte **item; extern byte *(*gen)(int); int lasthit; (int, Mouse) hit(*Menu, int, chan(Mouse), Mouse); }; /* * Subfonts * * given char c, Subfont *f, Fontchar *i, and Point p, one says * i = f->info+c; * bitblt(b, Pt(p.x+i->left,p.y+i->top), * bitmap, Rect(i->x,i->top,(i+1)->x,i->bottom), * fc); * p.x += i->width; * where bitmap b is the repository of the images. * */ aggr Fontchar { usint x; /* left edge of bits */ byte top; /* first non-zero scan-line */ byte bottom; /* last non-zero scan-line + 1 */ byte left; /* offset of baseline */ byte width; /* width of baseline */ }; aggr Subfont { sint n; /* number of chars in font */ byte height; /* height of bitmap */ byte ascent; /* top of bitmap to baseline */ Fontchar *info; /* n+1 character descriptors */ int id; /* of font */ }; enum { /* starting values */ LOG2NFCACHE = 6, NFCACHE = (1<>8; } #define BPLONG(p, v) {(p)[0]=(v); (p)[1]=(v)>>8; (p)[2]=(v)>>16; (p)[3]=(v)>>24; } /sys/include/alef/a.out.h 664 sys sys 732923261 715 aggr Exec { int magic; /* magic number */ int text; /* size of text segment */ int data; /* size of initialized data */ int bss; /* size of uninitialized data */ int syms; /* size of symbol table */ int entry; /* entry point */ int spsz; /* size of pc/sp offset table */ int pcsz; /* size of pc/line number table */ }; #define _MAGIC(b) ((((4*b)+0)*b)+7) #define A_MAGIC _MAGIC(8) /* vax */ #define Z_MAGIC _MAGIC(10) /* hobbit */ #define I_MAGIC _MAGIC(11) /* intel 386 */ #define J_MAGIC _MAGIC(12) /* intel 960 */ #define K_MAGIC _MAGIC(13) /* sparc */ #define P_MAGIC _MAGIC(14) /* hp-pa */ #define V_MAGIC _MAGIC(16) /* mips 3000 */ #define X_MAGIC _MAGIC(17) /* att dsp 3210 */ /sys/include/alef/regexp.h 664 sys sys 733539232 1185 #pragma src "/sys/src/alef/lib/libregexp" #pragma lib "/$M/lib/alef/libregexp.a" /* * Sub expression matches */ aggr Resub{ union { byte *sp; Rune *rsp; uint qsp; /* for acme */ }; union { byte *ep; Rune *rep; uint qep; /* for acme */ }; }; /* * character class, each pair of rune's defines a range */ aggr Reclass{ Rune *end; Rune spans[64]; }; /* * Machine instructions */ aggr Reinst{ int type; union { Reclass *cp; /* class pointer */ Rune r; /* character */ int subid; /* sub-expression id for RBRA and LBRA */ Reinst *right; /* right child of OR */ }; union { /* regexp relies on these two being in the same union */ Reinst *left; /* left child of OR */ Reinst *next; /* next instruction for CAT & LBRA */ }; }; /* * Reprogram definition */ aggr Reprog{ Reinst *startinst; /* start pc */ Reclass class[16]; /* .data */ Reinst firstinst[5]; /* .text */ }; Reprog *regcomp(byte*); Reprog *regcomplit(byte*); Reprog *regcompnl(byte*); void regerror(byte*); int regexec(Reprog*, byte*, Resub*, int); void regsub(byte*, byte*, Resub*, int); int rregexec(Reprog*, Rune*, Resub*, int); void rregsub(Rune*, Rune*, Resub*, int); /sys/include/alef/net.h 664 sys sys 743450966 4422 #pragma src "/sys/src/alef/lib/libnet" #pragma lib "/$M/lib/alef/libnet.a" typedef aggr Ndb; typedef aggr Ndbtuple; typedef aggr Ndbhf; typedef aggr Ndbs; enum { Ndbalen= 32, /* max attribute length */ Ndbvlen= 64, /* max value length */ }; /* * the database */ aggr Ndb { Ndb *next; Biobufhdr; /* buffered input file */ byte buf[256]; /* and it's buffer */ uint offset; /* current file offset */ byte *line; /* next unparsed line */ int linelen; /* and its length */ uint mtime; /* mtime of db file */ Qid qid; /* qid of db file */ byte file[2*NAMELEN];/* path name of db file */ Ndbhf *hf; /* open hash files */ }; /* * a parsed entry, doubly linked */ aggr Ndbtuple { byte attr[Ndbalen]; /* attribute name */ byte val[Ndbvlen]; /* value(s) */ Ndbtuple *entry; /* next tuple in this entry */ Ndbtuple *line; /* next tuple on this line */ uint ptr; /* (for the application - starts 0) */ }; /* * each hash file is of the form * * +---------------------------------------+ * | mtime of db file (4 bytes) | * +---------------------------------------+ * | size of table (in entries - 4 bytes) | * +---------------------------------------+ * | hash table | * +---------------------------------------+ * | hash chains | * +---------------------------------------+ * * hash collisions are resolved using chained entries added to the * the end of the hash table. * * Hash entries are of the form * * +-------------------------------+ * | offset (3 bytes) | * +-------------------------------+ * * Chain entries are of the form * * +-------------------------------+ * | offset1 (3 bytes) | * +-------------------------------+ * | offset2 (3 bytes) | * +-------------------------------+ * * The top bit of an offset set to 1 indicates a pointer to a hash chain entry. */ #define NDBULLEN 4 /* unsigned int length in bytes */ #define NDBPLEN 3 /* pointer length in bytes */ #define NDBHLEN (2*NDBULLEN) /* hash file header length in bytes */ /* * finger pointing to current point in a search */ aggr Ndbs { Ndb *db; /* data base file being searched */ Ndbhf *hf; /* hash file being searched */ int type; uint ptr; /* current pointer */ uint ptr1; /* next pointer */ Ndbtuple *t; /* last attribute value pair found */ }; /* * bit defs for pointers in hash files */ #define NDBSPEC (1<<23) #define NDBCHAIN NDBSPEC /* points to a collision chain */ #define NDBNAP (NDBSPEC|1) /* not a pointer */ /* * macros for packing and unpacking pointers */ #define NDBPUTP(v,a) { (a)[0] = v; (a)[1] = (v)>>8; (a)[2] = (v)>>16; } #define NDBGETP(a) ((a)[0] | ((a)[1]<<8) | ((a)[2]<<16)) /* * macros for packing and unpacking unsigned ints */ #define NDBPUTUL(v,a) { (a)[0] = v; (a)[1] = (v)>>8; (a)[2] = (v)>>16; (a)[3] = (v)>>24; } #define NDBGETUL(a) ((a)[0] | ((a)[1]<<8) | ((a)[2]<<16) | ((a)[3]<<24)) enum { DNScache= 128, }; /* * Domain name service cache */ aggr Dns { Ndbtuple *cache[DNScache]; }; /* * ip information about a system */ aggr Ipinfo { byte domain[128]; /* system domain name */ byte bootf[128]; /* boot file */ byte ipaddr[4]; /* ip address of system */ byte ipmask[4]; /* ip network mask */ byte ipnet[4]; /* ip network address (ipaddr & ipmask) */ byte etheraddr[6]; /* ethernet address */ byte gwip[4]; /* gateway ip address */ byte fsip[4]; /* file system ip address */ byte auip[4]; /* authentication server ip address */ }; extern byte classmask[4][4]; #define CLASS(p) ((*(byte*)(p))>>6) /* * for user level udp headers */ enum { Udphdrsize= 6, /* size if a to/from user Udp header */ }; aggr Udphdr { byte ipaddr[4]; byte port[2]; }; uint ndbhash(byte*, int); Ndbtuple* ndbparse(Ndb*); void ndbfree(Ndbtuple*); Ndb* ndbopen(byte*); int ndbreopen(Ndb*); void ndbclose(Ndb*); int ndbseek(Ndb*, int, int); Ndbtuple* ndbsearch(Ndb*, Ndbs*, byte*, byte*); Ndbtuple* ndbsnext(Ndbs*, byte*, byte*); Ndbtuple* ndbgetval(Ndb*, Ndbs*, byte*, byte*, byte*, byte*); byte* ipattr(byte*); int ipinfo(Ndb*, byte*, byte*, byte*, Ipinfo*); int eipconv(Printspec*); uint parseip(byte*, byte*); int parseether(byte*, byte*); int myipaddr(byte*, byte*); int myetheraddr(byte*, byte*); void maskip(byte*, byte*, byte*); int equivip(byte*, byte*); uint nhgetl(byte*); usint nhgets(byte*); void hnputl(byte*, uint); void hnputs(byte*, usint); /sys/include/alef/auth.h 664 sys sys 782420930 2787 #pragma src "/sys/src/alef/libauth" #pragma lib "/$M/lib/alef/libauth.a" enum { DOMLEN= 48, /* length of an authentication domain name */ DESKEYLEN= 7, /* length of a des key for encrypt/decrypt */ CHALLEN= 8, /* length of a challenge */ NETCHLEN= 16, /* max network challenge length */ CONFIGLEN= 14, KEYDBLEN= NAMELEN+DESKEYLEN+4+2 }; /* encryption numberings (anti-replay) */ enum { AuthTreq=1, /* ticket request */ AuthChal=2, /* challenge box request */ AuthPass=3, /* change password */ AuthOK=4, /* reply follows */ AuthErr=5, /* error follows */ AuthTs=64, /* ticket encrypted with server's key */ AuthTc, /* ticket encrypted with client's key */ AuthAs, /* server generated authenticator */ AuthAc, /* client generated authenticator */ }; aggr Ticketreq { byte type; byte authid[NAMELEN]; /* server's encryption id */ byte authdom[DOMLEN]; /* server's authentication domain */ byte chal[CHALLEN]; /* challenge from server */ byte hostid[NAMELEN]; /* host's encryption id */ byte uid[NAMELEN]; /* uid of requesting user on host */ }; #define TICKREQLEN (3*NAMELEN+CHALLEN+DOMLEN+1) aggr Ticket { byte num; /* replay protection */ byte chal[CHALLEN]; /* server challenge */ byte cuid[NAMELEN]; /* uid on client */ byte suid[NAMELEN]; /* uid on server */ byte key[DESKEYLEN]; /* nonce DES key */ }; #define TICKETLEN (CHALLEN+2*NAMELEN+DESKEYLEN+1) aggr Authenticator { byte num; /* replay protection */ byte chal[CHALLEN]; uint id; /* authenticator id, ++'d with each auth */ }; #define AUTHENTLEN (CHALLEN+4+1) aggr Passwordreq { byte num; byte old[NAMELEN]; byte new[NAMELEN]; }; #define PASSREQLEN (2*NAMELEN+1) aggr Nvrsafe { byte machkey[DESKEYLEN]; byte machsum; byte authkey[DESKEYLEN]; byte authsum; byte config[CONFIGLEN]; byte configsum; byte authid[NAMELEN]; byte authidsum; byte authdom[DOMLEN]; byte authdomsum; }; aggr Chalstate { int afd; /* /dev/authenticate */ int asfd; /* authdial() */ byte chal[NETCHLEN]; /* challenge/response */ }; extern int convT2M(Ticket*, byte*, byte*); extern void convM2T(byte*, Ticket*, byte*); extern int convA2M(Authenticator*, byte*, byte*); extern void convM2A(byte*, Authenticator*, byte*); extern int convTR2M(Ticketreq*, byte*); extern void convM2TR(byte*, Ticketreq*); extern int convPR2M(Passwordreq*, byte*, byte*); extern void convM2PR(byte*, Passwordreq*, byte*); extern byte nvcsum(void*, int); extern int opasstokey(void*, byte*); extern int passtokey(void*, byte*); extern int authenticate(int, int); extern int newns(byte*, byte*); extern int authdial(void); extern int auth(int); extern int srvauth(int, byte*); extern int getchal(Chalstate*, byte*); extern int chalreply(Chalstate*, byte*); extern int amount(int, byte*, int, byte*); /sys/lib 20000000775 sys sys 796774452 0 /sys/lib/fax 20000000775 sys sys 794350289 0 /sys/lib/fax/h.ps 664 sys sys 794350321 10847 %!PS-Adobe-2.0 %%Version: 0.1 %%DocumentFonts: (atend) %%Pages: (atend) %%EndComments % % Version 3.3.2 prologue for troff files. % /#copies 1 store /aspectratio 1 def /formsperpage 1 def /landscape false def /linewidth .3 def /magnification 1 def /margin 0 def /orientation 0 def /resolution 720 def /rotation 1 def /xoffset 0 def /yoffset 0 def /roundpage true def /useclippath true def /pagebbox [0 0 612 792] def /R /Times-Roman def /I /Times-Italic def /B /Times-Bold def /BI /Times-BoldItalic def /H /Helvetica def /HI /Helvetica-Oblique def /HB /Helvetica-Bold def /HX /Helvetica-BoldOblique def /CW /Courier def /CO /Courier def /CI /Courier-Oblique def /CB /Courier-Bold def /CX /Courier-BoldOblique def /PA /Palatino-Roman def /PI /Palatino-Italic def /PB /Palatino-Bold def /PX /Palatino-BoldItalic def /Hr /Helvetica-Narrow def /Hi /Helvetica-Narrow-Oblique def /Hb /Helvetica-Narrow-Bold def /Hx /Helvetica-Narrow-BoldOblique def /KR /Bookman-Light def /KI /Bookman-LightItalic def /KB /Bookman-Demi def /KX /Bookman-DemiItalic def /AR /AvantGarde-Book def /AI /AvantGarde-BookOblique def /AB /AvantGarde-Demi def /AX /AvantGarde-DemiOblique def /NR /NewCenturySchlbk-Roman def /NI /NewCenturySchlbk-Italic def /NB /NewCenturySchlbk-Bold def /NX /NewCenturySchlbk-BoldItalic def /ZD /ZapfDingbats def /ZI /ZapfChancery-MediumItalic def /S /S def /S1 /S1 def /GR /Symbol def /inch {72 mul} bind def /min {2 copy gt {exch} if pop} bind def /show {{//show} 0 get exec} bind def % so later references don't bind /widthshow {{//widthshow} 0 get exec} bind def /stringwidth {{//stringwidth} 0 get exec} bind def /setup { counttomark 2 idiv {def} repeat pop landscape {/orientation 90 orientation add def} if /scaling 72 resolution div def linewidth setlinewidth 1 setlinecap pagedimensions xcenter ycenter translate orientation rotation mul rotate width 2 div neg height 2 div translate xoffset inch yoffset inch neg translate margin 2 div dup neg translate magnification dup aspectratio mul scale scaling scaling scale addmetrics 0 0 moveto } def /pagedimensions { useclippath userdict /gotpagebbox known not and { /pagebbox [clippath pathbbox newpath] def roundpage currentdict /roundpagebbox known and {roundpagebbox} if } if pagebbox aload pop 4 -1 roll exch 4 1 roll 4 copy landscape {4 2 roll} if sub /width exch def sub /height exch def add 2 div /xcenter exch def add 2 div /ycenter exch def userdict /gotpagebbox true put } def /addmetrics { /Symbol /S null Sdefs cf /Times-Roman /S1 StandardEncoding dup length array copy S1defs cf } def /pagesetup { /page exch def currentdict /pagedict known currentdict page known and { page load pagedict exch get cvx exec } if } def /decodingdefs [ {counttomark 2 idiv {y moveto show} repeat} {neg /y exch def counttomark 2 idiv {y moveto show} repeat} {neg moveto {2 index stringwidth pop sub exch div 0 32 4 -1 roll widthshow} repeat} {neg moveto {spacewidth sub 0.0 32 4 -1 roll widthshow} repeat} {counttomark 2 idiv {y moveto show} repeat} {neg setfunnytext} ] def /setdecoding {/t decodingdefs 3 -1 roll get bind def} bind def /w {neg moveto show} bind def /m {neg dup /y exch def moveto} bind def /done {/lastpage where {pop lastpage} if} def /f { dup /font exch def findfont exch dup /ptsize exch def scaling div dup /size exch def scalefont setfont linewidth ptsize mul scaling 10 mul div setlinewidth /spacewidth ( ) stringwidth pop def } bind def /changefont { /fontheight exch def /fontslant exch def currentfont [ 1 0 fontheight ptsize div fontslant sin mul fontslant cos div fontheight ptsize div 0 0 ] makefont setfont } bind def /sf {f} bind def /cf { dup length 2 idiv /entries exch def /chtab exch def /newencoding exch def /newfont exch def findfont dup length 1 add dict /newdict exch def {1 index /FID ne {newdict 3 1 roll put}{pop pop} ifelse} forall newencoding type /arraytype eq {newdict /Encoding newencoding put} if newdict /Metrics entries dict put newdict /Metrics get begin chtab aload pop 1 1 entries {pop def} for newfont newdict definefont pop end } bind def % % A few arrays used to adjust reference points and character widths in some % of the printer resident fonts. If square roots are too high try changing % the lines describing /radical and /radicalex to, % % /radical [0 -75 550 0] % /radicalex [-50 -75 500 0] % % Move braceleftbt a bit - default PostScript character is off a bit. % /Sdefs [ /bracketlefttp [201 500] /bracketleftbt [201 500] /bracketrighttp [-81 380] /bracketrightbt [-83 380] /braceleftbt [203 490] /bracketrightex [220 -125 500 0] /radical [0 0 550 0] /radicalex [-50 0 500 0] /parenleftex [-20 -170 0 0] /integral [100 -50 500 0] /infinity [10 -75 730 0] ] def /S1defs [ /underscore [0 80 500 0] /endash [7 90 650 0] ] def % % Tries to round clipping path dimensions, as stored in array pagebbox, so they % match one of the known sizes in the papersizes array. Lower left coordinates % are always set to 0. % /roundpagebbox { 7 dict begin /papersizes [8.5 inch 11 inch 14 inch 17 inch] def /mappapersize { /val exch def /slop .5 inch def /diff slop def /j 0 def 0 1 papersizes length 1 sub { /i exch def papersizes i get val sub abs dup diff le {/diff exch def /j i def} {pop} ifelse } for diff slop lt {papersizes j get} {val} ifelse } def pagebbox 0 0 put pagebbox 1 0 put pagebbox dup 2 get mappapersize 2 exch put pagebbox dup 3 get mappapersize 3 exch put end } bind def %%EndProlog %%BeginSetup mark % % Encoding vector and redefinition of findfont for the ISO Latin1 standard. % The 18 characters missing from ROM based fonts on older printers are noted % below. % /ISOLatin1Encoding [ /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /minus /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent /dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron /space /exclamdown /cent /sterling /currency /yen /brokenbar % missing /section /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree % missing /plusminus % missing /twosuperior % missing /threesuperior % missing /acute /mu % missing /paragraph /periodcentered /cedilla /onesuperior % missing /ordmasculine /guillemotright /onequarter % missing /onehalf % missing /threequarters % missing /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth % missing /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply % missing /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute % missing /Thorn % missing /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth % missing /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide % missing /oslash /ugrave /uacute /ucircumflex /udieresis /yacute % missing /thorn % missing /ydieresis ] def /NewFontDirectory FontDirectory maxlength dict def % % Apparently no guarantee findfont is defined in systemdict so the obvious % % systemdict /findfont get exec % % can generate an error. So far the only exception is a VT600 (version 48.0). % userdict /@RealFindfont known not { userdict begin /@RealFindfont systemdict begin /findfont load end def end } if /findfont { dup NewFontDirectory exch known not { dup %dup systemdict /findfont get exec % not always in systemdict dup userdict /@RealFindfont get exec dup /Encoding get StandardEncoding eq { dup length dict begin {1 index /FID ne {def}{pop pop} ifelse} forall /Encoding ISOLatin1Encoding def currentdict end /DummyFontName exch definefont } if NewFontDirectory 3 1 roll put } if NewFontDirectory exch get } bind def %%Patch from lp %%EndPatch from lp setup %%EndSetup %%Page: 1 1 /saveobj save def mark 1 pagesetup 10 /S1 f (_) 720 840 w (______________________________________________________________________________________) 740 840 w (_) 720 852 w (______________________________________________________________________________________) 740 852 w 14 /Helvetica-Bold f (Your Institution) 720 1140 w (FAX) 2740 1140 w 14 /S1 f (_) 720 1200 w (_____________________________________________________________) 770 1200 w 14 /Helvetica-Bold f (Your Division) 720 1440 w (Your Division\264s Title) 3688 1440 w 14 /S1 f (_) 720 1560 w (_____________________________________________________________) 770 1560 w (_) 720 1572 w (_____________________________________________________________) 770 1572 w 14 /Helvetica-Bold f (Date/time: ddd) 720 1920 w (No.Pages: ppp) 4032 1920 w (To: TTT) 720 2400 w (Location:) 720 2640 w (Fax: fff) 720 2880 w (Voice:) 720 3120 w (Email:) 720 3360 w (From: FFF) 720 3840 w (Location: Your) 720 4080 w (Location) 1744 4080 w (Fax: Your) 720 4320 w (Fax Number) 1404 4320 w (Voice: Your) 720 4560 w (Voice Number) 1537 4560 w (Email: Your) 720 4800 w (Email Address) 1538 4800 w 14 /S1 f (_) 720 5160 w (_____________________________________________________________) 770 5160 w (_) 720 5172 w (_____________________________________________________________) 770 5172 w 14 /Helvetica-Bold f (Comments:) 720 5400 w 14 /S1 f (_) 720 6960 w (_____________________________________________________________) 770 6960 w (_) 720 6972 w (_____________________________________________________________) 770 6972 w cleartomark showpage saveobj restore %%EndPage: 1 1 %%Trailer done %%DocumentFonts: Helvetica-Bold S1 %%Pages: 1 /sys/lib/fax/header 664 sys sys 794349911 597 .ds @w Your Institution .ds @d Your Division .ds @t Your Division\'s Title .ds @l Your Location .ds @f Your Fax Number .ds @v Your Voice Number .ds @e Your Email Address .LP \l'6i'\v'12u'\l'-6i' .sp 1.5 .ps 14 .vs 12 .ft HB .ce 1 .tl '\*(@w'FAX'' .sp -0.5 .ce 1 \l'6i' .sp .tl '\*(@d''\*(@t' .br \l'6i'\v'12u'\l'-6i' .sp 2 .nf .na .ta 2i 4.6i Date/time: ddd No.Pages: ppp .sp 3 To: TTT .sp Location: .sp Fax: fff .sp Voice: .sp Email: .sp 3 From: FFF .sp Location: \*(@l .sp Fax: \*(@f .sp Voice: \*(@v .sp Email: \*(@e .sp 2 .br \l'6i'\v'12u'\l'-6i' .sp Comments: .sp 12 \l'6i'\v'12u'\l'-6i' /sys/lib/fax/receiverc 775 sys sys 794350153 411 #!/bin/rc spool=/mail/faxqueue recipients=/mail/faxqueue/faxrecipients faxowner=tor #list of people to notify when unrecognizable fax comes in # # Arguments should be # time Y|N pages [ftsi] # switch($#*){ case 4 case 3 {echo $*; echo FAX: page $spool/$1.'*'} | mail `{cat $recipients} case 0 {echo $*; echo FAX: no pages} | mail $faxowner case * {echo $*; echo FAX: page $spool/$1.'*'} | mail $faxowner } /sys/lib/fax/faxgoose 775 sys sys 783900352 95 #!/bin/rc exec runq -t3 /mail/faxoutqueue /sys/lib/fax/faxtry < /dev/null > /dev/null >[2=1] & /sys/lib/fax/faxtry 775 sys sys 783900352 95 #!/bin/rc shift sender=$1 shift addr=$1 shift mount -a /srv/telco /net aux/faxsend -v $addr $* /rc 20000000775 sys sys 742423283 0 /rc/bin 20000000775 sys sys 793555081 0 /rc/bin/a: 775 sys sys 776102149 76 #!/bin/rc unmount /n/a: >[2] /dev/null mount -c /srv/dos /n/a: /dev/fd0disk /rc/bin/b: 775 sys sys 776102156 76 #!/bin/rc unmount /n/b: >[2] /dev/null mount -c /srv/dos /n/b: /dev/fd1disk /rc/bin/c: 775 sys sys 776102162 145 #!/bin/rc unmount /n/c: >[2] /dev/null if(test -e /dev/hd0dos) mount -c /srv/dos /n/c: /dev/hd0dos if not mount -c /srv/dos /n/c: /dev/hd0disk /rc/bin/psu 775 sys sys 698617478 109 #!/bin/rc switch($#*){ case 0 ps | grep '^'$user case 1 ps | grep '^'$1 case * echo Usage: psu [ user ] } /386 20000000775 sys sys 796841346 0 /386/bin 20000000775 sys sys 796450460 0 /386/bin/8al 775 sys sys 796754975 258597  t ƒø …ÁþÿÿŸŸÀƒøU„‘ uè‹A ‰ $è³d [ „ „ ý ýÿÿž …éúÿÿŸBŸÀƒødŒÙ „þÿÿƒø„þÿÿƒø…Ùöÿÿéþÿÿƒø„ëøÿÿƒø…Âöÿÿéðýÿÿƒø Ö ÿÿé,íÿÿƒø\tƒø^… $D$‰$è8d tЃøt²ƒøu€ë«ƒø t•ƒø…pÿÿÿ늋J‰ $èë< $ „~ „ó ) ý ;Æ@;Æ@;ƒ`4 ;뱃ì‹T$€=KQ ¹ ¹ ¹‡ ¹¯ ¹æ ¹ &• ƒøuÂÆSëÀÆ?‹K‰J뵋C‰$‰T$ƒd$ ˆJÆDéPÿÿÿ‹C‰$‰T$ƒd$ *t ƒøtƒø tž†œ ÆB;éÍþÿÿÆ‚éÅþÿÿ‹C‹@$‰D$‹K‹CŸ ‹K$‰Jé$þÿÿŸKˆ éþÿÿƒìè:òÿÿ‹\$Ç èÿýÿÿ‹D$T‹ƒû EŸÀƒø;…… ‹ È· ÆB;D$0‰$žâ¶ ˆJÆDéîüÿÿD$0‰$ž¡¶ À‰D$ƒd$ ƒ<•<þ $ ‹T$L‹D$P‹@‰Pƒú „ò $è/Òÿÿéÿÿÿ‹Bƒø tfƒø taƒøt\D$D‰$‹B‰D$è}ñÿÿ‹D$p‰$D$D‰D$èGœÿÿD$D‰$èÔñÿÿžW èŽj $‰è‰-, ‹ŒW ‹ŒW t4ƒø#t)‹J‰ $èÓÿÿÿ‰Áƒø ‹J‰M‹ ‹ŒW ‹ŒW ‹Ž‘ ‹ŒW t.‹J‰ $èØÿÿÿ‰D$‹L$‹I‰ $èÅÿÿÿ‹T$9Ðv‰Â‰ÐƒÄ Ã%š‘ ‹\W ‹ŒW ‹\W ‹ŒW ‹ŒW |ƒÄÃú t4ƒøtƒøuŠŸŸÀƒø u ÆC éVýÿÿŸBŸÀƒø …FýÿÿÆCé=ýÿÿ‰T$‰$è²üÿÿ‹l$‹T$‹\$ŸBŸÀƒøt ƒø éùüÿÿÆC éðüÿÿ‰T$‰$èeüÿÿ‹D$‰$èYüÿÿ‹l$‹T$‹\$‹C¶ éüÿÿÆC éüÿÿƒø1„± …Êûÿÿ‹J‰ $諬 ‰ $è²ÿÿÿ‹\$‰Âƒø ‹L$ƒÁ‰ $èÖ  ‰L$ƒd$  t0ƒø t%€=8Q …xþÿÿž Û  8Èt1ÀƒÄÉ$èÛíÿÿ‹L$ ƒø ŸÉ9Èu ž 8Èu ž ‰J‹Bƒø „) ‹9ÅÖ ãÿÿ‹¬$ì ‰ $¿J¿É‰L$èß ~ …ýÿÿ=í ‰MŸJ ˆMŸJˆM }n‰èÁà؋@T D¬@‰èÁà؋@T9D¬@t‰èÁà؉ê‹L¬@‰HTÿD‘ $ ÇD‘ ÇD‘ ÇD‘ $ ƒÄ(Ãì‹|$$‹\$ ‰ýÁý‰l$‰ø™Ç$ ‹D$0‰D$èæ =° Ûé ~-ž ~%ž èªj  ÆT ŸŸÀƒø „ÔþÿÿAé·þÿÿŸŸÀƒø „aþÿÿBéDþÿÿì  …b tžaû ǘ‘ „ª tƒø t«‰$è= …ôþÿÿènúÿÿ‹4 à $‹ä uÿä ‰L$èÁ7 ‹@ƒø ÿÿÿƒû …)üÿÿ‹Eôƒø ‰A‹‰ÈR ‰A‹‹J܉H‹‰ÈR AéHòÿÿ¹, oâ R Oâÿÿ¹ ‹Mè‰L$‹M $  ö tƒø t4ƒøt‹R ƒú ‰Z‹M ‰J ¶MˆJƒû ŸBŸÀ‰D$ èt ‹I ‰ ƒÄÞ:­ ÿ‹|$,‹t$‹l$‹\$4ƃf t7ƒø t2ƒøt-‰ $ž@à ‰ $ƒd$ ‹L$ ‰L$‹L$‰L$èçÿÿ‰Â‹D$(‰P‹T$‰$èÆæÿÿ‰D$ ¹ tƒøtzƒøta‹J‰ $‹M‰L$¹ „Ò ƒøuØÆ6ëÓÆ8ëÎÆ7ëÉÆ9ëÄž ¶Éž %Ÿ t%ƒø t ƒøt‰S‹S¶¶Ò‹ •HR ðÿÿƒø&„{ t‹D$0‰$žæá t‹D$0‰$ž ŸÉ‹t™ ŸÉ‹t™ ŸÉ‹t™ ‰Séjçÿÿ‹ tÆ$‰$ƒd$ t ƒ|$ …“ tƒøuK‹Bƒø ¶É‹0ë ¶Éž ¶É‹0ë ¶É‹0ë ¶É‹0ë ‰ $èÀÿÿ‹T$0‹J‰H ‹JˆH‹ ‰XW ‰HR ‰ˆR tƒý t ƒý…=ÿÿÿ9Óu ž ¶ t2ƒø t-ƒøt(‰$ž«í ‹A‹ ‹ ÿ‹l$$‹\$(éPÿÿÿƒì0¹, ‹A‹@‰D$0ƒd$, ‹A‹@‰D$,ŸŸÀƒøt#ƒø)„O „¥ ” t!‰$žI” t!‰$ž™” ‚ ‰L$¹ ‹I‰ ƒÄÃì‹T$‹B ‰ä 1ɉH$é þÿÿ¹ 1ɉH$éíýÿÿ¹ Ùl$ Û\$ Ùl$‹\$ ‹B¶ ‹D$ ‰<‘ ¶Éž ‰L$¹ ‰L$èYÿÿÿ‹5À‘ ‹B‹K9Èu ƒb $‰T$‰T$è"÷ÿÿ‹D$‹L$‰Hèºõÿÿ‹D$0‰$ž (ƒø tƒø tƒøt ž tƒø tƒøt ž ÿÿž ÿ‰ÁÇ õ ð ú ` ‰L$è Kÿÿ‹L$$‰A¹bù Mÿÿ‹D$‰$‹D$,‰D$è+~þÿº …–üÿÿ‹T$(‰$è2Fÿÿ‰D$¹ tƒø t ƒøt1ÀƒÄ$ËZƒû ¶ÉŸ î ÿÿ‹T$(ƒø ƒøtƒøu³‰\$ ‹K‹ ‰ $è»ûÿÿ‰ÁžÔ Ÿ „ä ÙîÜd$Ý\$ÝD$‹„$d 4ÿÿ‰D$(‹T$8‰$èÔ3ÿÿ‰D$¹ $‰L$ƒd$ ÿ‰D$º …†õÿÿ‹Rƒú %ÿÿ‰D$0‹T$4‰$èÔ$ÿÿ‰D$º ÿ‹L$$‰A‹\$8‰$èºÿÿ‰D$º …ß÷ÿÿ‹Jƒù ‹9Ø…€ è0ÿÿ‹L$‰A¹ŸÞ $ƒþu‰$è· ȉÁëï‹B‹JȋJ ȉÁëރì‹\$‹S‰ÕEƒú $èW( ‹B(ض Zéÿÿÿ‹L$‹AƒøuÇA ƒb „| „“ ƒú ˆ‰ÐB•ŸÈ•ˆNƒþ ‰‰ÐƒÂ‰(ƒîƒþ Ž[ ¥þÿÿ‰Ø‰\$(Ñø÷l$‹L$$Áé¬þÿÿ‰,$‰|$‰|$‰t$‹D$,‹@ÿЋ|$‹t$‹l$‹\$$é»þÿÿƒì‹\$$‹L$‹D$(‰D$ ‰\$žM |ž® |ž® „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿL‘ ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿL‘ ‹B= *ÆD$ ÇD$ CJƒú Bƒú!|äƒÄÃ$՘W  D$ ‰$D$‰D$ž ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCTƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCXƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC\ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC`ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCdƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉClƒÂ¶B¶ÀÁà¶ ¶É Áf‰KpƒÂ¶B¶ÀÁà¶ ¶É Áf‰KrƒÂ‰Ð+D$ƒÄÃì€  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$è&ÃÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-ì› ape: %s(addr) { complex %s addr; %s %i üüüüüüüüüüüüüÁüüüüÈÿüüŠ Œ 9Y>)F$°ˆï_Fnµµž“FœÉF"ãŠÈF|Øê›ÐþF‚MÇraB3Gã yÏùhGiWCžžG±¡*ÓÎÒGJœô‡‚H¥\Ãñ)c=Hç7ú]rHa àÄxõŠHyÈöÖ²ÜHL}ÏYÆïIž\Cð·kFIÆ3Tì¥|I\ Ž³'„±IsÈ¡ 1ååI:Ê~^Jšd~ÅQJÀýÝvÒa…J0}•GººJ>nÝllŽðJÎɈ‡á$KAüjéZK©=Pâ1PKMäZ>dÄKW`ñM}ùKmžn¡Ü/LDóÂääécL°ó^ä˜Lœp¥uÏL‘af‡irMõù?éO8MrøãÄbnMGû9»ý¢MzÈÑ)œ×MŸ˜:Ft¬ ORW SP ± Ž µ    * . ÿúã Ÿ· %i %i %L %a looping structure: prop structure: stat of / failed Recursive ... Tree: ú GENCOM l ælibc.h èÂflag ‘@äconvcount l tmp 6ú ðv áfrs Ùú Ú tú {ú ~ú …ú Šú ú •ú Ÿú Šú ­ú ³ú ¹ú Áú Äú Çú Êú Íú Ðú Öú Ýú ãú èú îú óú þú ú  Ú Ôtypepoly áf "ú type í.frame Ô_sc2v “žƒ™G„3„y„9„l’M “žƒlžN„ “žƒ– „‚†††ˆŒ„“Ž”žš“‰†ˆ•‹›†””Œ¬†š“„„®‹ŽMŠ„_’”–›ƒ+“††ˆ±‡£‹‹†” ž‹‹†•ƒF”•‹› ˜‹“‹ƒš““‹F–“˜[‹ƒG–““‹ƒŠ„ƒ ŠA™•FŠŽ‚†ƒ‰€œƒ“ †‹–‰‹–‰™–F BƒG”„†‹–‰‹–‰–™F BƒGœ„Bƒ‚‚ˆ ƒH„C„‡ —H„ ƒH„C„—H„ ™C”F”‚žH„ —𐋄–™–“ Šˆ°•I–™–‹„V„„G„„†Š”†ƒ††‰ ˜G”‚ŒC‚Šƒƒ B‰A‚G‚…?—Š‚C™G…‚„i—®„_‚„U‰J “D…ƒ„\‚„t‰‚‰‚Š-„ ‚˜ˆƒƒ‰‰‚†…D…Œ…‡„†‰††‡ƒ‚œ„ˆƒƒ‚…DˆŠ¡N˜ „†‚‚†EŽE„‚”Œ•†˜…D‚ˆ ‚–‰‡›Œ‹ ”€ˆ•†‹‡J‚H‚‚ˆš†—¡ ”…Ї‡H‚H‚ ˆ‚Až…‚„ˆ‹‡‚𓛆€”›ˆ‡‡‚š“†š€”†‹ƒ‡‡‚–ˆ†ƒ‚–ˆ†ƒ‚ˆ‘£‡©…Š„‹› „Gª„f“Ÿ–“•‹„^‹„ Œ ŠƒKˆ…ˆ ‘ˆAH‚‚…ˆˆ ™Gƒ„Oƒ„Rƒ„ †Š†AŠŸˆ …†œB…“•š••Œ•AŒŠ†•• †²B…šŽšˆŸ•†žA…—¥Š†•˜®„ŒÊL„‰…‘šŠšŸ”žˆÊ‹°ˆM™™†Š……„…ƒ ™H…‚K …ˆ‘žŠ…‹ŒDŠ˜„‹’E“A„ˆAq„„f†U„š„^‘Ÿ–¢–¢–¢€„PŒ„EŸ„jŽŽ„D„cŒŽ®†šC…—•–¢–¢–¢ŒO‘Yƒˆ V„…‹…[„ Љƒ†E„‡Š„‰“‡” ‘‰Ž˜§BАƒ„„—DЇU‰„˜Ÿ…ˆ—”T„J…ˆ”—I„0††¡“ƒ” Ó¬Œ‰”ˆ”¢ˆ©œˆ”¢ˆ©®¬‰Š³BА ƒJ…„«…„“f„M…ˆ”—I„;ƒƒƒ†ƒŽŒA††…„…ކ†ˆB……‚†Œ–B…‘…†‘Š“…‡’”™‰››·‡ª™‹Dš«L„€„ ††‘…B…‘… –Bƒ†‡‰ƒ‹„Œ†…T‰†‹†…ƒD†‹W•„JŒr„„C„„€ü.ºn …I„†W„•·%…†©k„.›[…S„ ”ŒO„ ™–NŽŒŒ‰“„›Œ–––ŽŸ‹MˆŽ„C‹„Uˆ—ŽŽ••„KŒV‰–„E–”‹„[ „ „–‹E‡H ƒG™‰D™†A™WŽA„KŽA„'…‡”‹ˆ„–…†ˆ”‡¥¢„¥¢•U£¥Ž–›“‚–„ƒ†š‰–†Jš„HƒA„EƒA„DƒA„K‰G‹6…±“•–ˆ…„„“›E„‰„‹] „‹„M‡P„ˆ“–•Œ`…‘_–$ˆ„ƒ ’Gœˆššˆv”C‡„`‡ „c‡#„YJ‡„BB„I‡„u…„ ÿÿý}„ „LŽ—XŒ…p†Œ…”Œ”‡“ƒŒ…W„ ‰AF” „…ˆ·‡””„‚ƒ–‹I’ …ˆ„”–‹É…0°l—/–‹H‡—D i )„MžN—„Nž„MŽAIž„e›%„C–f„¢!„І„ƒ™„›–šHŽ–ƒ ‚…ƒˆˆ„…‚™†††’Ž„ƒ‡‰ƒŠI’žƒDˆ™‹†„…ˆž‡‰…“TŠ„ƒŽ„ƒ…JˆŠˆž…K…†„ƒŠXŠŽƒS†ˆˆ€šŒ†œ‰ Q„†„ƒŠEŸ‰ˆ”‹“JŠŽ †ˆ…†…†‡ˆŒŒ’‰ ‚‹£…BŠœˆ†ˆ…ˆ š“2‰³—‚ƒ…‚Œ‰«“ƒƒ‰‚ˆ¥… ŠC‹…‚‡G’–†ˆˆ”‹ƒ†‡„†ˆ©Šš™Œ®†­¬¢®¢†‚† ‘Œˆ”K•ˆ™›™‹„ Œ„…†† G‚Vˆ ‚ˆ‰™ƒ „NP‡®šI‹¥N¥„‚ „‘……ˆ‹›š„–†”žˆ‹›š„–†“–žˆ‚]Ž ‘†Œ‘–†ˆ–‘Ÿ†’…XŒˆ˜‹‚ƒ‚šLŒˆ˜‹‚ƒ‚„†’žDƒ ‚©…Œ—…š…ˆI•‚‚„EŠƒˆ¡…††G Šƒƒˆ•ŽŠƒˆ†ˆ‡‰…’‚‚—Mƒˆ …††G ª…V…R…0†Šƒˆ†ŠŠ•Šˆ’†Bˆ…‚†…ŽŠˆ‰‹…ƒ‚…F‡ „™…C‹ ‚ …Œˆ€‹A‡„‹”…‹±A‡„‹”…„‹¥ˆˆ „ ‹”…G…ŒK‡Y„  «€ ˆ ЇA‡ ƒFŽŠ¯„€F„„J³ƒD„†‚‡¢™˜…ŠDŒˆ‚‚’‡œŒœ¥‚ˆ†™¡œš“šžœ”•¡©¡•ˆ”ˆ•‹•‹šˆŠg„‹„(Šˆœ‡•‡‹…†„ ‚ƒ¢i„‹Ž‹ƒ Š„ƒ„„‰…>­z“;†y“8b‘‚„ •†™Áœˆœ²Šˆ‹·ˆ„R•„K“„j“—)„Bp—1„nŽ–-„B”p ‚Ššˆ‚ƒ‰ƒ†”‹‡ ŽˆŽ†ˆŸ…‚‡‡[————Ž˜…A€D…D†„„F„„I„ „L„ „_ „.ІˆŒˆ…„…‰G…E„’‘†‰\‡ƒC†Œ[¡‚ŒšAƒS„ƒO„#†‹‰„…E„ †„ƒŸX’–ƒD’ˆ·–LŒˆƒ‡„‚’B”Šš…CŸˆQŠˆ–ˆ¢ˆ A„GŽˆOˆCˆC…$‚¯ˆ•B…†„–†ƒ‡“‡Š›‹šAƒ†‡†‡Ÿ…‡„ŽŸ‹”ƒ‰†††¡…‚†’Š‹§†“Š„”Œb›§„\ƒ=Œ‘›ˆŒ‹­„¡ˆ‘Ÿ¥„–‰†„ƒŽ”š‚š“ˆš‰‹•ƒ††™‚†ˆƒŠ‡ŠœD›£††“†‡‰“‚ƒK‡ Š‘I„”…‚ ‚ˆ€‰Œ“šž“™•ŒÅ°­¬œ¬‰˜—ˆ‰•ˆˆ…Š•ˆ•ˆA…Љ…ˆŠ“ˆ›ˆ…ˆ‚“€˜‹ˆ°€†‚‚ƒ……L‹ˆ[‡Œ‹…ˆD‡ ©•Œ©•ˆœ©•ˆ™ž™©•ˆ™ž•˜œˆŸ“ÏæK‘n„.œU©•Œ©•ˆœ©•ˆ™ž™©•ˆ™ž•˜œ„C‘n„=‚†ˆ¡C‹A…ƒ †„%®‚g„'ƒW‡ÜB‰UM ‚D„%œU„ ‹™—™ „G‹ˆÝ„B‘K„‚’†ˆ‹„‹š™"‚iˆ+™DŠO’¡„BOK’¡„BœO„”ˆ‹¥¥™„B‘I„†œIƒˆ  š¥“•Lˆ„Cˆ„ Ё†ˆ ˜‚…‚…S‘… „ˆ‡‹ˆ‹ˆ‚ˆ—†„‰†ˆ„‹…Bˆ „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ ƒƒ‹ƒ„†ƒ‡›ƒŠŠƒŠŠƒŠŠ‡…ƒ†ƒ‡…ƒ†‚‚‡†‚…„‡†‚…„Ž7®q„1ƒX‰„ŠŒ_‰ŠŠŒ„f‰„Š‹#„m‰ŠŠ‹*„Q…ŠŠ‹—B€„J…„Š‹„†ƒ‰†ƒ‡†‰‰†‰‡†‰‰†‰‡‚ˆ‰‰‚ˆ‰‰„„—§§§§§§§§ èÚN ‹ä (  ‰L$èA ‹A‰Œ¡ ‹D$,‰D$‹D$0‰D$ ž … „kÿÿÿJëЉ,$‰Ñ‰T$I‰L$èù  uK‰Øƒû tFëىò‰t$ƒû užKƒû ÿ‰è‹Œ$Ø ƒŒ$€ ‹C‰D$èþÿÿ‹\$‹T$(‹K‰J‹ˆ¡ ‹l$4‹\$(‰Ø‹L$‹S)ʉS‰,$‹S¹ ‹9Ç†á ƒÄÃì@ž ž ‹D$<‰D$‹D$@‰D$ž ‰é9è…° „$” Á‰Œ$œ  ‚Ð }‹D$0ƒÀ‹L$89Á+ ‹…š ‰ÈƒÀé'ÿÿÿ‰ÈÌ ‰$žœ¥ è³î    ‹IpƒÁ ‰ $èíÏ ‡üÿÿ‹|$LD$‹p‹X1íƒþ ƒù~'‰œ$¬ ‹Il‰L$‹ ‹Ip‰L$ èß ‹T$$Â9ÚrŽ‹D$‰$èÄÓ ƒø ‹ I‰L$è{° „Mÿÿÿ‰ $‹‹ ‰D$è\’ ø uCëí¶ƒø tõ‰Ú¶€ø …Š È €  ‰È‰ $èÂÎ ‹9ņ‚ é=ÿÿÿ‹L$<‰Jt‰$‹D$‰D$‹D$@‰D$‹D$D‰D$ èjûÿÿ‹D$P¿L$:‰Hx‹D$D‹L$$)Á‰L$$诲  žšt ÀƒÄ(Ëx  È ‰L$è 9‹ $ ‰ $è- Èu‹D$|‹L$<9È„úüÿÿ‹D$Dƒø ‰=€  ‹D$$ƒ <„ èf ž ƒb ‹ ‹L$‰JƒÂ‰€¡ |‹l  |{9Ñtp¹) ‰$‰Á‰D$ Ñá‰L$è‘x ‹ …)ÿÿÿé]ÿÿÿƒý …0ÿÿÿ‹Ré£þÿÿ¹ téžþÿÿƒ|$( ‰ð‹L$P9ÎvOÿD$,‹D$,=€ …)ÿÿÿé]ÿÿÿƒ|$( t ƒþ …ŠþÿÿéTÿÿÿƒ|$( }:‰ÙÁážÀÉ |ƃÄËE   $L‰D$ ‹D$P‰D$èºOÿÿ‹D$`‰$èAOÿÿéÛüÿÿB‹ƒØ $èmi ‹Il‰ $‹ ‹Ip‰L$èX …p þÿÿƒ€$x ªùÿÿ‹ƒØ uÿ„$p ø ‰Ã‰ðÁè ‰Æ‰èÁè ‰Åƒþ ‰Ù‹\$D)Ù÷á‹L$01Ò÷ñÁà ‰Â‹D$P9Ðt‰,$‰Ð‰T$T‰T$ƒd$ t$4¹ )Й÷ÿ‰Á‰ð‰L$èø1 ‹IpÑá‰Øȹ/ ‹ 9ÈvƒbT ·ƒø…· ÿÿ‹|$ ‹l$,·EH·MF)ȉÆ1Û1҉ЋL$9Ê}‰ÑBÑá‰øÈ· uåC9ó|à‰èƒÀ‰$‰|$‰ÑÑá‰øȉD$·ED‰D$ èG‰ u‹D$ ‹@X‰Ù9ÃuK‹D$ ‹@X)Øëš·D$$ƒøu/·Ê‰ $è°# ·D$Pƒø tu·D$P=€ ‰¬ …"ýÿÿ‹Adƒø  ‰$ž ·BD‰Å‰D$ ‰\$‹J49Ëu‹J89ÍtP‰ÐƒÀ‰$‹0¢ $èqÀ tº tG1ɋE uƒ|$ …ÿÿÿëÛ¹ uƒ|$t1ÀƒÄÞ t£JëċL$‰ $‰ÑI‰L$è\èÿÿ‹L$ ‹T$ƒø „zÿÿÿ¹ uEéžþÿÿEA빃ì‹T$‹ƒ`t ‹L$‰ $‰Á‰D$$Áá‰L$è¶ ‰ u ‰ u ‰Ð‰$èM ·Ãƒø ·Â=  tç‰È‰‰YƒÄÃì‹\$‹T$ ‰Áƒû tåKƒÂë҃ì‹è ‰È‹L$9Èt ƒ%   ‹D$@‰D$žLÈ ˜Ì ‹\$,ƒø ªÑ Îþÿ‹T$\‹J‹ Ñá‹D$4Èfƒ ‹‹Ì ÿÿƒì‹L$¶• uƃ¹ ‹ 9È‡Ì ‹ 9ȇº uBëí‹L$XщÊéfÿÿÿ‹L$@‰ $¹ôÀ …'ÿÿÿ‹Œ$ì ‹„$ä è’{ u‰ÑB‰T$8‹D$ ȹ ‰D$èÿÿÿž ‰D$‹D$(ƒà‰D$‰È‰L$ƒÀ8‰D$ ž $h‹T$`‰ÞƒÆ|$D¹ $$‹D$L‹L$D)ȋ] ¹ ‹D$&ȋL$:9ÈŽÜ „w ‰Œ$L ‰”$L uÿ„$@ 룃ì4‹t$8‹D$H» ƍŒ$€ „$Ø ‹E‰„$ˆ ‹„$Ž ñ)é‹S0)ʉS0‰$‹0¢ » u¿E8‰D$4‹E @» 9Ø ž ¶f‰D$·D$=€ ¶€ø ‰Â‹E‹ )È9Â~¿M8‰ ‹M ‰Ð‹ ¶I‹RʉPƒÄÃì‹l$‹\$‹T$ ‹Cƒø t‰Ð‹ ‹ʉƒÄÿM8‰ ‰Ð‹M ‰ÐÈ9ø~ ¿C8‰D$‰Â·C>‰ÖÆ¿K8‰ð)È·K>1Ò÷ñ‰ð)Љ‹L$)È¿M 9È|9ú‰Ñ‹T$)щM ‹T$ÊëäƒìD‹l$H‹E‰D$4‹\$T‹D$XH9Í‹ ‹D$LȋJ ȋL$49ȍÿÿÿ‰<$‰è‰l$èûÿÿ‹|$H‹l$8ÿL$X‰è»  ‰ØƒÀ ‰$‹D$H‰D$‹D$‰D$è?8 ‹L$ˆJ ‹D$ÁøˆB ‹D$ÁøˆB ~²ž® ¿NˆJ ¿FÁøˆB ˆZ ˆ ·ÁèˆCƒÃƒÂ9êr苄$, uAëí¶ƒø tõ‰ÈƒÄÃìž AÁá‰L$è:n fƒc Áá‹C ȉ‹L$ f‰ ‹L$f‰J‹L$‰J‹„$œ ‹„$œ „Jÿÿÿ‹„$œ „9þÿÿƒd$ 9Â}<‰Ñ‰T$Áá‹E ȋ‰L$‹A ‰$èôk 9Â|Ä1ö‹E9Æ}I‰Ç‰ð» ¹ 9Â};‰ÑÁá‹E ȋ0··Œ$^ 9Â|Å·„$^ ¶M‹W¶R)ѶCȋŒ$€ žÿÿÿÿé )È=' ‰Ø‰$èy; fƒb ÄYˈD$ ‹M$ˆJ ‹E$ÁøˆB ‹L$ ˆJ Œ¹ ¶K Áá ȶK ¶S ‹D$+ÁøˆB ‹D$+ÁøˆB ‹D$+ÁøˆB Љ‰ÁÓ|$ ‰ÁÓ|$‰ÁÓ|$‰ÁÓ|$ëɃì‹L$‹T$9Ñu ‹L$ ‹T$9Ñt1ÀƒÄÞ •ˆB •‰èÁèˆB ‰èÁèˆB ·ÁèˆB¶KˆJ¶KˆJ¶KˆJ¶KˆJƒÃƒÂ‰Ð‰ÑE‰ñ9õ~ʼnð@Áà‰Ù)Á‰L$@èJñÿÿƒø ‹L$8ˆJ‹L$<ˆJ‹L$@‰J‹L$(‰J‹D$D‰$è¡I ‰D$P‰ØƒÀ‰„$Ð ‹Œ$Ø ™@ ‹C ‰·Íf‰ ·Å¿ÈHf‰Bƒb ‹‹L$ ‰H¹™* $ƒø $è:îÿÿ‹t$0‹D$‰@$‰ÃƒÀ(‰ÂƒÀ¹ 늉΃îaƒÆ 뀉΃î0évÿÿÿœ 뀉΃îaƒÆ ésÿÿÿ‰Îƒî0éiÿÿÿœ ÿH‹A‰D$‰È‰ $èGõÿÿ‹D$ƒÄ Ãì‹D$‹@ƒÄÃì‹l$(‹D$$‰D$1ۉØ9ë}8‹L$ ‰ $‹L$ىL$‰é‰\$ )ىL$èšöÿÿ‹l$(‹\$ ƒø ˆ‰ÐB•¶È•ˆNƒþ ‰‰ÐƒÂ‰0ƒíƒý |žä¿ |žô¿ u ƒ%ø¡ uƒ%ø¡ ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ƒb ‹L$I‰J‹L$ƒÁ‰J‰Ð‰$èaÿÿÿ‹D$ƒÄÃì‹T$‹B ƒø ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø ÁážP– ž ‰Ð‰$èi×ÿÿžÿÿÿÿÄ˜  ž D$‰l$‰t$ ‹B ‰D$èØÿÿéŒüÿÿ‰$¹ìŽ Æ u¶ÁƒøwBéÿÿÿ1íëö¶Áƒø uôëäƒì ‹L$‰ $L$‰L$èæŒÿÿƒÄ Ãì€ ˆ·Jˆ ·BÁèˆCƒÃ¶¹E  ‹EÁèˆB‹EÁèˆB‹EÁèˆB‰ÐƒÀ‰Á‰ÃC¶M*ˆéžûÿÿ¿Jˆ ¿BÁøˆCƒÃ‹J ˆ ‹B ÁøˆCƒÃ‰Ø‰ÙC‰\$ ‰$‹B‰D$‹B ‰D$èRšÿÿ‹D$‹@ ‹\$ ÃéIûÿÿ¹O ¶ ȶJÁá ȶJÁá ȉCƒÂéþÿÿ¶JÁá¶ Èf‰CƒÂ¶JÁá¶ Èf‰C ƒÂéVþÿÿ¹A Áá¶ ȉC ƒÂ‰Ð‰ÑB‰S‹C Âéƒúÿÿ¶JÁá¶ Èf‰CƒÂékúÿÿ¹I ÿÿ‹T$ ƒÂH‹D$ˆ ‰ $è žÿÿÿÿé_ÿÿÿ¶„$” ƒø tB9Ú|㍄$” Ý̬ }‰ÑÁážÜÆ qid 0x%ux|0x%ux %s %s s auth %.28s æ$M  <ä.s9 1 s10 º€ä.s61 ht Pä.s8 ¡ÔÄactivecol ŸÚ .t1   ðc ame uf frame Ú rame  negate .frame 6ÔRow_type ú roll ú Sú rame í.frame $í.frame ú  árune   SÔfrinsert Ú  Ú   Ú Ú  ðf nú Ôcursorset ùÔbscreenrect  linksp   Ú nd yÚ ead  ár s  TÚ  ú ár  ái ár ú      ú Ú ú Ú  „BE„ „A„’C§‰AA™— ‹J””“ „BE§šB«„AÔWŽˆA„„,…šÀ€šª‰†‰š¥‚ˆšÛA†”ˆE°CŠ‘„‚—‚ŸŸŸŸŸÖº‚¡“ ‚Š•‡†$ª€T«‡“”‡AŸ”’CM„„„HK”„E‹„SŽ‹…”„Z›Ž„LŸ!ƒ‚‰‰Š œœBŠC‡F ŽA‹!„b‡Dž‡AŽY„A˜ŠˆB‘OˆA……ŠA‹ ŒA‹„EG€„AЁB‘A A „S”„hŒE˜ŠŽ/„uˆCˆ‘Aˆ„O‹E™Š”„RŸ ŽA‰CˆB…Œ„˜ „I™ ˆFŠŽŽŽ‹ „V¢Cž•‰A¢„„Sˆ„B„„a‘Œ‹Œ>„ „‚ I–‡D‘ŽD±G„‚ ŒF£€£€ ŠEŸ³¶Ä¶À‘³¶Ä¶À¶Ä‘³¶Ä°Ä ‹A˜£E‰B„œ„E†H „K†…E† ›†ˆ‹ H–ŠBž ›H—–š‘A«“‹›Š«•DŽ¥ç™Gèކ¡P™–†œ“A­â™DàŒ„IÜÈ„›†Ü‹‹‘“eÜË „jÜÈ„gǐA’„A„‹™O‰°–BE¹’’K¹’’‰„}°„ ‹B£EŽŽ‘:„w†„‡A„ƒ‹BÄ €FÌ„BŸŽŽŽ„`¥NˆÏ‡B² „I¥ „P· „]žŠ„P“B“ŠI‚„ „ ‚Eƒ ±„AŠƒB“‹’‚Ÿ„AІ¡A¬†’œA¡˜A†ŠA‘†„A–‚«ˆP„,Š[…„D•ƒ[ ˜ ŽH”‹©‰“‹”C‰†JŒ¥R¢”D „ZŒL„•CˆDƒƒƒ„d-Š„„A•ŽE§ˆA’E©˜NFˆ„‡Aˆ˜„Œ ˜Ÿ"†b‚‹¶„C‘Wÿ‡D—Ž ‹ž»E…ºŽŽ•‘C—¬L‰„„S—„W‰Œ ­‹ž„C‘0†m« ‹CœLŽŽ5„g‹‹ ă ‰JЇA„¬¶œCœRŽŽŽT„'‰ŸC…†Bž¡‹ŽŽŽŽŽ“[CœF„ †^‰>†„B‘ˆB–A›E€Š„*ƒd••‰BˆAЁHŒN†Š›ƒFƒ‡A„§ª‰ƒ ˆFŠ™‡AŽŒAAˆA…cˆ„‡Aˆ˜„M‹A•Cˆ„A“A…„)Š•Â„†ŽŽ ‡I‰†A†„A•Šž‰‡‡‘ˆB˜‡AŽ•AD•\„‡Aˆ”„†ŒBƒH‹§„D‡•¬•†‡ƒGˆ‰A°Ÿ¬C®œ‚‘D¡Œ‚‹R’O–— ‹A‰BƒK­–µA„D™C’¶„†ŒA€‚ŽŠîD‰„„‚«„B®¢‹ƒC–£ž F„ 𠣄„„š’ ¬ „AÝC‹‡‡ˆŒF± ŒD•°‹ŒPÒœ‚… ’I‡ŽD•”—Œ ‹’V†ž„WŠD—ˆAª„GƒM‹‡„V™©çC‡ŒœM„‡1†›„¯†Dƒ¢‹ •BƒAÈ“I–£ƒ¡ G„‚ŒŽŒ£ŒBžC …“†šÁŠ–’„A•—šŽ‰š„F’Ž•2aˆK…š’CЬÁŽŒ¹‡C•Œˆ‘Œ••‹A—™?ŽMŠ«Šž¡Ž H·„E­•†‰®“ ’H ™œ‹‹Aˆˆˆ‡ „X–ˆB„‚­E‚‰„G‚I„VŒ„C“„XŽˆ—Ž„ …ŠŒ‰¢ ›  J„·M„ L„ P†…§‚‘“  ¬”‹†AŠƒE”¥š‹³’Dƒ‘‰‘E†R„—ˆ”  B„A¯–D°CßHµ‘Aª „MæCŒG„Kšš”žš€”„ŠEƒ‡H‘„AŸƒXˆS‰„§®„…E‡AAƒ±‹³“ƒŽXˆÂÅ —AŠA‡‡‰‘„B3†q”¹„ …HBƒ„A¿‰†_ŒÒ‰‰Žì„„W¥ ¡ˆªE•Š ƒBƒD°°…†”D‚B…E•F‚‚‹A…„ ˆˆA’…†Œ‚ŽAŒ’ˆB“š† ŽA„Cš‹AŒ‚ŽAŒ†’‚>BÀkŒ-_ŒŽŸ„\‘OŽ‰Œˆˆ"„wŽŠŒŠˆ.„U’…„„B•G–‚……„P’…„ „‚ŽD‚˜…ŠAƒ‚‰Šˆ)±…P„G„c„ˆ"M„ „ˆ˜A’ ‡G‚‡Cˆ„ƒB’‘‚’…ˆ‘D”І™N†C‰”ŠC„™ H†£ˆ„A”„CˆŠœ[†„ А”C’ˆ…E‰EA‹A‰BŠ B‰AŽƒE‚†ƒŽ…‚Eƒ„ƒ„„„A‹Š¡Aœ« ˆ‡„ ŸDŽA…€<–BÁm‰Bž/‚„k‡AŽ‚)„d‡A‚$„G²†‘_Š„X¬C‚«P·_„†„L»c„/ŒB‚”… „9„ –˜˜˜¡‘‰A…Ž˜£B—ž¯§‹ŒBA†“‰AŽ»Â£!^µ ‹C‘ €B™•CˆD¡•†K†Ž†’Bž‘“‹’Аœ‡I‡„ ‚‘’’‰A†‰A†‰A†‰A†‰AŠ‚……™Ÿš†Œ*ƒj—’‹ ‰HŒ‚˜A…‰A’‡A„‡ŒB„C‹P®ˆ‘ ¯„N‚’D«³¢„V©„Œ ¥AŒ“ ‹CœDށ ‘H—ƒCŠAƒ¥—¬‹Aœ”Oƒ„BAÏ„Q‰Œ„xÖ ‡HŠ‹B‹B‡„C‡Aƒ…«‡§‹„P† „Ž—„ƒOŒO§‡A B‘G”‡EŠ•œ†A‡†A‡ŠC‡ ‹H„‡A„‡B³³GA¹ „d˜„$†“ŠB‹BŒŽ„N‡A„°‹œDƒµ„W„Š¡†%ƒVŒN‡A A‘G”‡E •˜†A€†A€ŠM‹‹E„‡A„šDŒG†C‚ˆ‡A…–“„M†_”„-ŠºˆC›‚ ‰A„ƒR†ˆ„N‡BŒA ŠB‰F”™E„‚•‹E‰Í „F—A˜ƒAª‰ Œ‡B‹¹DŸE®„F‰„ŒoŠAœŽB‡B Fú‹B™„B—„†…‰††­¢O‡©‡A‡ƒŠBƒ–Bƒ ˆBÎEœˆ‹Aƒ „I™AC†„K‘„L–„²žC…Šˆ †GŠšN˜ƒ ŠBŒA„AŠAƒE†BŠ˜Š‹ …H„¿AI£A„„Šœ »Š‹™J„‘©¥‹„I— „MA C„C†…Š™ƒƒƒ‰‘ ˆ †Dˆƒ…ž‡F˜†ˆ‰‚Ž ˆGކC‡…Š„…‹Œ‡‚‡…‚ˆˆ‚˜ˆA›¥†“ˆD®†›‹D˜šŸ‡‡‚ŒFŽššˆAŒ„­‘°ˆCŸ˜‡…ˆAŠ™¹›Ž‰†ˆA‰N™„†‡A¯†…‹ ‡D„žA„…ŠƒA‡ŠƒA‡‚°‡‚Eƒ °”‡‡AƒB‘˜AˆC‚’ЇA‘ŠE ŒB‚”ŠŠE ŒŠAB‚‚—ˆ™A—‚ŠŽˆI ‡’CšƒX’–F‘A£A‡…‹ —F —‹A¢†EÜ„C†Y§AŒ„CŒD‰„H…„"…ŸˆC­’ ‚ˆ² ƒIŠÿ ‘C—“•FŽ„CŽ„ ‚˜‡A¿‚ˆ‘«¥Aƒ“‡ƒH£“††A‚†A‚œK„‚‰Ä† ŠA””š¬A¶GŠŽ‹™€™¯’©†Œ‹I C«†˜‹C§†§Šœ ˆGŒžUƒƒA®Š«³˜ „Gƒ‹Dªˆˆ‰†Œ†A‚†A‚ž…ïA…\„Mˆ‘C£ˆ„j«†„P«†„J† šAž—8†~‰>uŠŠD‰£2o‰-·Ašžd›ƒAŠA†‰Œ—„h£(„lš „‘Cœ„L»“ „B•Ež„U„Œ Žˆ ˆJ„žŠD‰£ „O§ „B¢E„„D‰ „ ¢G€‰„FŸŽGK‰„a„£-„Œ ‚ˆˆˆ…†„˜‹‹‡‡›’\ˆ‡A„ª»ƒN…•A§ ‡‰„B‹F„A˜‡A‰«„ Œ ‚ˆˆ…†„•‹‹‡‡›‹“`ƒ‡A„Šž…ŒN†„‰E£‡ˆª‰„J…ƒ„“† ŽEˆBŠA˜†P…‰”©Ž…†A‚‡‰›‰ ‹… ŒEŽBŽ›‹A‹”ŒBˆ…‹O’L–˜‹A‰—‚‚ƒA‡Aƒƒ›‡ˆA‹›’W•Š›©Å•˜A‚P‹„E„ „F¡‚†‡„W‰‰¥ „H‰Š…‰‰†‚Š ŠHŠ¥ŠC‰„ƒC…‰…N‚Œ†E„C’Ž„‚šA•‚‹Œ™D‘ˆCŠŒG‚ŠŠ–M‰„ƒP•‡†‚†‚ƒ†ƒƒƒƒ‰ƒU‡ƒ †­Š—L›ƒI”ˆAEŽ„ABއO‹ˆA –Ž‘‘‡‡‹‡/¯£ºk‘D ‡A‘—…%‘W…‡‡ ‘J…¬œ…˜—‰Œˆ‚‘Œ„O¯‚‘†„Zƒ‹B„‰„A†…‚„_¶(†H™A”¡Šƒ‡•A§I‚„A„‰ G„“ ™ ’H±‹AšCŸ›DšŽ› ¯Í‚Š„aÍ„ ŒHŒ¥ŠC•’¢†ˆžŠœ†‰B™‡Bއsš ‹A ‚X¡ŠD˜“C‹O¥ˆA˜†C™‘‹ †„CˆD‡’B­†D˜„A„†‹…z†‹A‘A–Á‘†—AƒÄ—C‹A ŽA˜‘ŸAƒAŠ‡ƒC—£A§E”†€‡A‚AŒœD¯š£Š ‰B‰B„†‡…C¡† ”¢C†À‹žC‚›º¬‚•ȬˆŠŽ §G„‡A‚‡…A¢…F…ƒ ŒF‹A‰‡•œ„C‰†† H•¥”¬Œ‡C•™®‡„ŠAŒJ€C•ƒ„ “„B ‰BŒ‹Eˆ„‡„ŸAƒA‹…I•ˆ„ †„ \‚‰ƒA‰C„‚ƒ‚•‡A‡B”BŠƒ‚‡‹K–ƒƒƒ Œ‰C‹¥A‡ŒCˆC Š ‡GŽ‡C•J„£‚„^©I”„WŠ­—ˆ£„ ‡A‡F’ƒƒ…ƒ‚‡…‚š†ŒŠ•R—…A‘‹C„B†D˜„ƒUŒ„P‚†ˆ †I„”ˆEކ†™ˆ ‘‚E‘†E‰‰‰‹‘†EŠŠ‘†E‰‰‘‚E‘‚E‘†E „E‰‰‰‰‘†E „EŠŠŠŠ‘†E„L………… –F……………‚€‚Œ‚Œ‚—AŸ‚Œ‚E ‹Dƒ‡ƒ‹Dƒ‡…‘ ‡G††††‚‡…‰BƒOÈŽˆDˆž†††††‹ˆPŒ„‚’†…ˆ‡AމŒŽ …Gކ†††‚‡ƒAƒ… ˆˆ0l›A>†}ŠŠ„–†žšFŽ‹A3„N§AŒ•A“ÄAŒž‹A“›ê‹B•†o„š„A“‡A“„•˜˜ž‹A“ ’‹EАŸ—‰‰‰‰‚„ €AŒ•••™‘¶Š‘E¥³‹A†Q‹A¢ ŽG‰ŽŽŽ‹(„f¥¥††ˆ’†††’‘̉“ ‡G’†††_„"›„…Œƒ………† ‡Hžƒ‡ŽŽ'ƒ]‹E††‚Œ‡AžŽG‚„A‡\‚„„š†‡B‚‚‚„E„KžE„W‚Ž ‡Hˆƒ‰ŽŽ'ƒ]‹E††‚Œ‡AžŽG‚„A‡\‚„„††‡B‚‚‚„E„KžE!‚ ‚ z†‡B‘ƒB„œ‚Œ…†¢B‹† ˆHŸ„ ¯A‚‡B…—‡…F‚O“ˆAŒ„‚Œ…†¢B‹† ˆHŸ„„‘Aš—‡‡O“ˆAŒ„ ˆG…C‰ƒU…‚†‹‚„A…‚’‰†B›ˆAŒHƒ †„ ƒI‚ˆC‰Cƒ‰y‚ˆŽ— ‡K‚ „„‚‡ŠAŽŽƒJ‡G˜ƒ‡ŽŽ J‚‚§“F‚„A‡g‚Ž ‡K‚†„„†‰ŠAŽŽƒƒK‡Gˆƒ‰ŽŽƒ H„‚‡„C‡ƒ„ƒ‚ŽŽ†•B„E„†•B„E„ ‚Œ“‡B…‚ƒ‚D‚†‡ƒA‰‰†‡ƒA‰ ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ †AƒˆA…ˆA„ŒAƒ…P‹…Aˆƒ„N„‡E‡G„„Y„•C‚„ „Až„Z•A‚„SŽDˆ„]B¥V†ƒ„ƒ„ Ÿ …AƒˆA…ˆBˆA„ƒD„ŠAƒ…S‡…AˆƒƒN„‡E‡„G„„Y„•C‚„ „Až„Z•A‚„SŽDˆ„]B¥Z†‰AŒƒC„ž…Hށ—C“ƒB‰KŽ„J…‡‡BƒA„ƒE„A„ƒO‚šA‚˜„B—…G‚ ‡Š„†F‚„#ƒ^Љ‡†O‡I“‡„OЉ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ €C„ˆ…AG‚‡Aƒ`† €‹“‚„L‰‡€ˆB„%ƒb‹‚†„R‰¡„J†œ„Cˆ…‡‡S……E………†mŒŠ¡7†„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ †KŸœ«‹™„Š‹AƒB‹A‹AˆŒª˜B„ŠDˆB„ ÿÿÿS’  ‹¶   H  …Lýÿÿ‰ÙƒÁ‰ƒ$$ Ç8à fÇmÄÁ þÿÿƒø*tWƒø+…zþÿÿÆ‹K ‰ú)ʉS‹Sƒúv5‹K ¶I¶Éƒáž u5‹B‰$‹BƒÀ‰D$‹B‹J)ȃÀ‰D$èÌv $ƒd$ €ù ‹J‰JƒÄÃb )˃û ȉ$‹‰D$‰\$è²j )ÈÁø‰Áƒø ‹CÇ@ „b ‰Ð‹JƒÁ‰J‹z5€à |+‰$‰D$‰è™ÇD$ ƒ|$UuZ‹B‹ )ÈÁøƒøu-‹¶ ‰ $ƒd$ ‰ $¹ f‰A‹„$  ˉ\$ ƒ|$( ÿÁáL$4‰‰ØƒÀ‰D$ éWÿÿÿƒ|$( ‹‹J9ÈsV‹¶ ‰L$è„ ‰L$èß ‹‹J9Ès‹¶ ¶Éƒù„ÿ ¶Éƒù„𠃉òƒú …éþÿÿƒû ¶É4Œ ¶É‰1Ûéýþÿÿƒøt€ƒø tŸƒø ¶É‰éšýÿÿƒø„Mþÿÿƒø „Dþÿÿƒø!…$ýÿÿé6þÿÿƒø&&„+þÿÿƒø#„"þÿÿƒø$„þÿÿƒø%…ùüÿÿé þÿÿƒø(„þÿÿƒø9„ýÿÿƒø:…Ùüÿÿétÿÿÿ‹B‹J)ÈÁøƒøu\‹¶ ‰ $ƒd$ ƒøt ƒøtƒ$$ t]ƒú tž  uz¶€ø ¶É‰ $èÙ $èžÀÿÿT$(‰$èÕA ž ‰È+Pà œÿÿ‰hà ‰‰ÐƒÂ‹ ÆB ‰ $‹J‰L$‰D$ ‰D$è”? ‰ $‹J‰L$‰\$èã= …Eÿÿÿ‹Z‹J)ˉ\$ ŸBŸÀƒàƒø ‰ $‹J‰L$‰\$èc= ‰ $‹J‰L$¹ ‰ $‹J‰L$‰\$èc< ‹Iüˆ뀋CÿCÆ „$È ¿Iþ¿Éé¡ûÿÿ‰øƒà@ƒø þ  T;D$HŽ`ùÿÿ‹D$H+D$T‰D$xƒ|$x ‹D$T;D$x~ÆD$PeÿL$xéiøÿÿÆD$Pf‹D$T)D$xéWøÿÿÝD$ Ý$ƒd$ …U    ƒ! ÿÿÿ‹L$@ƒÁ‹D$0ÁàȉÁƒ|$0 ƒé‹ƒø ƒù ‹9Ñs žÿÿÿÿƒÄÞ ƒÂ;l$r®;\$s2‹ áÿÿ uÿÿžß¢ Ãì‹L$ ƒù ˜ Bƒú!|äƒÄÃ$ÕÄà  ] | ‰Ø™Ç$ tì1ۃû}ƒú t7ƒú t2‰èEˆ‹ÿŸŸÒCƒû|áƒú tƒú u ÆE tâƒù t.ƒù0|<ƒù97‰ØÇ$ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCTƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCXƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC\ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC`ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCdƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉClƒÂ¶B¶ÀÁà¶ ¶É Áf‰KpƒÂ¶B¶ÀÁà¶ ¶É Áf‰KrƒÂ‰Ð+D$ƒÄÃ= |ž˜ |ž˜ „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿ`à ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿ`à ‹B= *ÆD$ ÇD$ CJƒú  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ ÃBÿD$ ¶¶À=€ ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$èþÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-”÷  aCoc§‡Ò?%s  r ælibc.a ælibc.h ”Ä_bigtens Œä.string gs ú Ô_cmp ôdysize Ôchdir ‰A‚F‰‰Cˆ³OŠ‰˜§‘Dˆ‰‰I‰ ƒG§AˆŽ ‚‰„ŠŠ†‡Ž‘–‡…†‘–‚„‚ƒ‡ƒ‹š…‡D„ …‡‚ F„B„B“B„„R„„H„„N„„ †›Ž£‡ˆ…†­‚œ„œˆ…G…š†ƒ‚ˆˆƒŒ„‡…® ‡ˆH”„£…D… ‚…‡Ž’ˆ‹ ›C‚ ¬””—ŒW„› ††ƒ’ˆ‹Aˆ†„  †Š“—‰… ‚’‹„„“Œ‡¬‹‡‰ƒH ‰†…‚‰„¡•••NБНŠŸ’J‡†±L †M©„ˆˆš†Ž‡‹¥ˆ‡š˜„š‡¯‹V‘…ˆM™…„N‚‰B„ˆ‡ Žƒ„БЄª˜… ‚š† ƒ ‡ ‚‹Ÿ•š†‹ˆ•…ˆB‰……¿…–†ˆBA„‰‡œ‘§ŽŒ…†ˆ‹ŠFA†•—A‰…‚–”„‰‚•¢¢B‰ƒ ‹‰žƒB‡DˆL®ƒBˆ‘ªƒB…Lˆ„E…”‰Š‚D‰‰A‰š —ˆˆƒ…–‡„š’ŽÀˆ†‰—ˆ©Bˆ †¥ƒB†ŸŠO”CˆHˆ„I Š¡ƒBˆ€†©ƒB†»Š¡ƒBˆCCˆ„b‹„A‹„H„T’ „K’AˆJ•„B‘„A‡„ ˆ“„D•„C‘„B‡„9‚ςӂςՂςςž‚ž‚ž‚ž‚ž†‡ˆŽš‰„‹„‹¡ ‡š—ƒš‡šA€’›­‹‰¢ƒB‰Ê§š‡ÅA†¡­»‰žƒB‰‡CˆD—A„A†A‹„IžA„‘Bž„Aˆ„Bˆ„B¯§–ôAž„Aˆ„BŽ„Lˆ„Fˆ„Bª„Bˆ„A®„Aˆ„GžƒBˆH‰Cƒ„C‡„Cƒ„NŒ‘‹Š„„C—„g‡†Œ„ƒ„H„‡„Nž‹š‡„R‡„œ„BO„MŒ„ ¿ˆˆ‚ƒƒ„“†—†˜††— І—‡†’€˜Šš•—«ˆ – ˆˆ… …†‰ “„ˆ‡–‚„ŠI‹J‰„i‹)„fˆ—  ‹„„c¡ƒk†„,™n„žŸˆ2„ „W„Z†‘„„LŠ„„L’„„G„ ‘Œ …U†A…‘‰‹‚ ’†ŒA†ˆ…•ˆQ‘˜A‚‚™¡‰‹ˆ¡‰‹ˆ“šš„‹‹ˆ‡††–ˆ‚“ˆˆŠƒ„Ÿ˜…™‘„†•V£‹‡™§‰†D‚Љ‰†‰„‰D…‰ƒ…BˆEˆ Ё‹„B‰„‚…‰‰’‹E„„……Gˆz‚ƒ¡€ª±±±±±±˜˜‰ „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ /386/bin/disk/mkext 775 sys sys 796755907 38179  €ù ‰D$D$ƒÀ8‰D$ è ‰ñƒù ‹J()ىJ,1ÀƒÄÃAD$‹L$‰ $‹L$$‰L$‰D$ ‰D$è, „| ‹Œ$ |žhb |žhb š¬ „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿ` ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿ` ‹B= *ÆD$ ÇD$ CJƒú Bƒú!|äƒÄÃ$Õ i ÝÿÿƒD$ ‹D$ƒÀ8‰$‹D$ ‰D$ž ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCTƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCXƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC\ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC`ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCdƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉClƒÂ¶B¶ÀÁà¶ ¶É Áf‰KpƒÂ¶B¶ÀÁà¶ ¶É Áf‰KrƒÂ‰Ð+D$ƒÄÃì‹L$‰L$ ‰ $‹D$‰D$ž ‹CTÁèˆB‹CTÁèˆB‹CTÁèˆBƒÂ‹KXˆ ‹CXÁèˆB‹CXÁèˆB‹CXÁèˆBƒÂ‹K\ˆ ‹C\ÁèˆB‹C\ÁèˆB‹C\ÁèˆBƒÂ‹K`ˆ ‹C`ÁøˆB‹C`ÁøˆB‹C`ÁøˆBƒÂ‹Kdˆ ‹CdÁøˆB‹CdÁøˆB‹CdÁøˆBƒÂ‹Klˆ ‹ClÁøˆB‹ClÁøˆB‹ClÁøˆBÆB ·Cp·ÀÁèˆBƒÂ·Krˆ ·Cr·ÀÁèˆBƒÂ‰Ð+D$ƒÄÃ=  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ d$ ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$èþÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-(`  ælibc.h rune.c Ôsnprint Ô_f2v t –   Ÿ®„£ˆ‡S„›ˆÃˆ‡\„‹£`„"«b„$•“|ú«S‰P Nƒ„„C„E„X„›‚„ „ƒŠB†M†ˆ‰„ƒHŠƒ„…’„„‚ŠHU†…’„ƒ|‚‹‹………………‹…………‹……………‹……‹…‹……‹…‹…‰‰„ŽŒ„…І†‚F… †‡ŠŠ—…‰ŸV… ‰‡„—ƒ]„‰_„%‡‡„ Š“…‰„|„?„‰„„P‰‰‰ƒRƒT”ŒBBŽ „…Љƒd„&ƒf„)Œƒ„‡o„2‰ „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ †……‰‘‰‘… /386/bin/fb/xbm2pic 775 sys sys 796758396 552 #!/bin/rc tf=/tmp/xbm2pic.$pid cat $1 >$tf awk '/^#define.*width/{wid=$3+7-($3+7)%8} /^#define.*height/{hgt=$3} /^static/{printf("TYPE=dump\nWINDOW=0 0 %d %d\nNCHAN=1\nCHAN=m\n\n", wid, hgt);}' $tf grep 0x $tf|sed 's/0x//g s/[^0-9a-fA-F]//g s/(.)(.)/\2\1/g s/0/..../g s/1/x.../g s/2/.x../g s/3/xx../g s/4/..x./g s/5/x.x./g s/6/.xx./g s/7/xxx./g s/8/...x/g s/9/x..x/g s/[aA]/.x.x/g s/[bB]/xx.x/g s/[cC]/..xx/g s/[dD]/x.xx/g s/[eE]/.xxx/g s/[fF]/xxxx/g'|tr -d '\012'|tr .x '\377\000'|tcs -t latin1 rm -f $tf /386/bin/ftpfs 775 sys sys 796755982 82970 W ‰è‰à ‹Hà ‹Hà ‹J‰ $è§( ‹Hà $‹L$‰ $ƒd$ Ç(à Ç(à „ÒüÿÿB‰T$‰$¹" „¯ 0 t1ÀƒÄhÞ ÷ $ž!ó ŸÉ‰ $è ) ó ‹ ƒøtèæÿÿ‹L$ ‰ $è—þÿÿ‰D$‹à ƒøtè“åÿÿ‹D$ƒÄÃì‹L$‹It‰ $èkúÿÿƒø ‹ éñþÿÿžªó Jd‰ÐƒÀ‰$žcô ‹D$fÇ@r ‹C‹J9Èv‰ÓƒÂ냃ì‹D$ ‹ˆ€ ‹\$‹T$$\$Ú\$ ‹D$;D$(|¡‹E9Âv‰U‹D$ƒÄÿE ¿Àƒø ‹€ tì1ۃû}ƒú t7ƒú t2‰èEˆ‹ÿŸŸÒCƒû|áƒú tƒú u ÆE tâƒù t.ƒù0|<ƒù97‰ØÇ$ ‹J()ىJ,1ÀƒÄÃAD$‹L$‰ $‹L$$‰L$‰D$ ‰D$èó „| „“ ÿ |žÜð |žÜ𠍍” D$‰•Ìï „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿ\à ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿ\à ‹B= *ÆD$ ÇD$ CJƒú ú $Ü Bƒú!|äƒÄÃ$Հ $‹„$€ 4à ŸÉ¿B¿À‰Å‰„$œ Ìÿÿéüÿÿ„$ ë ÆE u‰ØÈŸ E | ‰Ø™Ç$ tì1ۃû}ƒú t7ƒú t2‰èEˆ‹ÿŸŸÒCƒû|áƒú tƒú u ÆE tâƒù t.ƒù0|<ƒù97‰ØÇ$ ·C·ÀÁèˆBƒÂŸŸÀƒøEÁ ¿C¿ÀÁøˆBƒÂ‹K ˆ ‹C ÁèˆB‹C ÁèˆB‹C ÁèˆBƒÂ‹Kˆ ‹CÁèˆB‹CÁèˆB‹CÁèˆBƒÂéVÿÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂ‰T$ ‰$‰ØƒÀ‰D$ž ·C·ÀÁèˆBƒÂé±þÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂ¿K ˆ ¿C ¿ÀÁøˆBƒÂé€þÿÿƒøAg ¿C¿ÀÁøˆBƒÂ‰ÐB¶K*ˆé-þÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂ‹K ˆ ‹C ÁèˆB‹C ÁèˆB‹C ÁèˆBƒÂ‹Kˆ ‹CÁèˆB‹CÁèˆB‹CÁèˆBƒÂéÌýÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂ‰T$ ‰$‰ØƒÀ‰D$ž ¿C¿ÀÁøˆBƒÂéqýÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂ‹K ˆ ‹C ÁèˆB‹C ÁèˆB‹C ÁèˆBƒÂ‹Kˆ ‹CÁèˆB‹CÁèˆB‹CÁèˆBƒÂéýÿÿƒøB„Î ¿C¿ÀÁøˆBƒÂ‹Kˆ ‹CÁøˆB‹CÁøˆB‹CÁøˆBÆB ‹C ÁøˆBƒÂéšüÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂ‹K ˆ ‹C ÁèˆB‹C ÁèˆB‹C ÁèˆBƒÂ‹Kˆ ‹CÁèˆB‹CÁèˆB‹CÁèˆBƒÂé9üÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂ‰T$ ‰$‰ØƒÀ‰D$ž ‹CÁøˆB‹CÁøˆB‹CÁøˆBƒÂ‰ÐB¶K*ˆéÉûÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂ‹K ˆ ‹C ÁøˆBƒÂB‰T$ ‰$‹C‰D$‹C ‰D$虳ÿÿ‹T$ ‹D$‹@ ÂéuûÿÿƒøO" ¿C¿ÀÁøˆBƒÂé$ûÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂé ûÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂ‹K ˆ ‹C ÁøˆBƒÂéÝúÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂ‹Kˆ ‹CÁøˆB‹CÁøˆB‹CÁøˆBÆB ‹C ÁøˆBƒÂB‰T$ ‰$‹C‰D$‹C ‰D$èz²ÿÿ‹T$ ‹D$‹@ ÂéVúÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂé;úÿÿƒøK„² ¿C¿ÀÁøˆBƒÂ‰T$ ‰$‰ØƒÀ‰D$žt ¿C¿ÀÁøˆBƒÂ‰T$ ‰$‰ØƒÀ‰D$žt ¿C¿ÀÁøˆBƒÂé€ùÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂéeùÿÿ¿Kˆ ¿C¿ÀÁøˆBƒÂéJùÿÿƒøTM ¿C¿ÀÁøˆBƒÂ‰T$ ‰$‰ØƒÀ@‰D$ž ¿C¿ÀÁøˆBƒÂ‰T$ ‰$‰ØƒÀ‰D$ž ¿C¿ÀÁøˆBƒÂ¿K ˆ ¿C ¿ÀÁøˆBƒÂ‰T$ ‰$‰ØƒÀ‰D$ž ¿C¿ÀÁøˆBƒÂ‹K ˆ ‹C ÁèˆB‹C ÁèˆB‹C ÁèˆBƒÂ‹Kˆ ‹CÁèˆB‹CÁèˆB‹CÁèˆBƒÂ‰T$ ‰$‰ØƒÀ‰D$ž ¿C¿ÀÁøˆBƒÂ‰T$ ‰$‰ØƒÀ‰D$ž ¶É Áf‰KƒÂŸŸÀƒøEt ¶É Áf‰KƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCƒÂé!ÿÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ‰ØƒÀ‰$‰T$ ‰T$ž ¶É Áf‰KƒÂévþÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ¶B¶ÀÁà¶ ¶É Áf‰K ƒÂé?þÿÿƒøA² þÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ‰ÑBŸ ˆK*ééýÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCƒÂégýÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ‰ØƒÀ‰$‰T$ ‰T$ž ¶É Áf‰KƒÂéýÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCƒÂé„üÿÿƒøB„ø ¶É Áf‰KƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCƒÂ¶B¶ÀÁà¶ ¶É Á‰K ƒÂéüÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCƒÂéƒûÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ‰ØƒÀ‰$‰T$ ‰T$ž ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCƒÂ‰ÑBŸ ˆK*éûÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ¶B¶ÀÁà¶ ¶É Á‰K ƒÂB‰S‹C ÂéÂúÿÿƒøO2 ¶É Áf‰KƒÂéjúÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂéLúÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ¶B¶ÀÁà¶ ¶É Á‰K ƒÂéúÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCƒÂ¶B¶ÀÁà¶ ¶É Á‰K ƒÂB‰S‹C Âé¥ùÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂé‡ùÿÿƒøK„» ¶É Áf‰KƒÂ‰ØƒÀ‰$‰T$ ‰T$žt ¶É Áf‰KƒÂ‰ØƒÀ‰$‰T$ ‰T$žt ¶É Áf‰KƒÂéÃøÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ饸ÿÿ¶B¶ÀÁà¶ ¶É Áf‰KƒÂ釸ÿÿƒøTY ¶É Áf‰KƒÂ‰ØƒÀ@‰$‰T$ ‰T$ž ¶É Áf‰KƒÂ‰ØƒÀ‰$‰T$ ‰T$ž ¶É Áf‰KƒÂ¶B¶ÀÁà¶ ¶É Áf‰K ƒÂ‰ØƒÀ‰$‰T$ ‰T$ž ¶É Áf‰KƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCƒÂ‰ØƒÀ‰$‰T$ ‰T$ž ¶É Áf‰KƒÂ‰ØƒÀ‰$‰T$ ‰T$ž ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCTƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCXƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC\ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC`ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCdƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉClƒÂ¶B¶ÀÁà¶ ¶É Áf‰KpƒÂ¶B¶ÀÁà¶ ¶É Áf‰KrƒÂ‰Ð+D$ƒÄÃì‹L$‰L$ ‰ $‹D$‰D$ž ‹CTÁèˆB‹CTÁèˆB‹CTÁèˆBƒÂ‹KXˆ ‹CXÁèˆB‹CXÁèˆB‹CXÁèˆBƒÂ‹K\ˆ ‹C\ÁèˆB‹C\ÁèˆB‹C\ÁèˆBƒÂ‹K`ˆ ‹C`ÁøˆB‹C`ÁøˆB‹C`ÁøˆBƒÂ‹Kdˆ ‹CdÁøˆB‹CdÁøˆB‹CdÁøˆBƒÂ‹Klˆ ‹ClÁøˆB‹ClÁøˆB‹ClÁøˆBÆB ·Cp·ÀÁèˆBƒÂ·Krˆ ·Cr·ÀÁèˆBƒÂ‰Ð+D$ƒÄÃì€  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ ÃBÿD$ ¶¶À=€ ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$è±ýÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-Dá 0x%lux|0x%lux  flen.c ælibc.h Ôrread ath í.frame ŒŸ„ˆ‹¢ŒˆŠŠ—„ˆ†™•šŒ_„H±„‚‚ššš…‚ƒ†Š’‚‚‘†‰…‚“ˆ„™–…§Š’…œ •œŒ“‰’…D‰LŒ‰Ž N†J„„’…‰G‚‘†‰”‹‡†‹„ˆ‰Š‘’’…Q­ŒŽŠ“‰Ÿ„GˆIŽ„†ˆ„•Žˆ‘‘–…EЁ ††‰…‹ˆ“„“ˆ’ˆ“„‰…U‰Œ¡„F„D‰B‡C†“ˆ›šŠˆ †ˆ†……œˆˆŽ‰…‚““ ŽŽ‡…†ˆ‘’‡ƒ…Gˆ ‚‰§‰—…G‡‹™ ……²‚’Šˆ“†‡‚š‚ˆ‚Žˆ˜ƒ™„‚…‚‘„ †Žƒ…L‚ƒ‡…•›… ‚‹œ…B‡—‚‹‹Œ‚‹„„B‡ƒ ‚—‰Š…•›†ƒ……‚”††Š ÇŒ•ˆˆ†‹Œ–°š‰ƒS‹U„‹ƒ!‚†¹•džŒ”¬Œš‰ƒIŒ„GƒDŒ„‚ ‘††‹Œ °A‹ ‡DЁT…C…„O”…„Yˆ……&†Š’…B‹…‚™ˆƒ‰„˜„‡……ƒ‘„„Š„£†„œPŒC„‚„‹‡ A‡A‡‡D¡‡D‚Œžª —›†ƒ ŒG™Š’Œ ˆª “‹‰‹ŒŒD‘”C‰QŽ9”c§—ˆ£˜‡˜”“Œ‹‰—S„‡‡N„ž†Ÿ ÆDˆF‚f‘Œ „MŒ A„A„‡‚“ˆ”šˆ…‚“ˆ”šˆ…‚Œ£Œ…Žƒ…±Œˆ©‚¡‘˜“ˆ Œ„„Ÿƒƒ†‰¹’Q „G‡„Œ…… ”Š“„› „œ„”„‚™“Ðš“ˆ‚£ˆ‡”ˆŒœ˜‹†ŒœŠˆ‚Œ§‚‰”„Œ˜„‚¥††…•›†ƒŒ‰„N„‰Š…•›†ƒ……†’ „Ž¡†‡””D™”ƒ™”Š†˜‘™B… І˜ƒ™ ‚Ž„„‡Š‘B†‘‡—A†–‘‘…Œ…‹ŒA‰‹A‹…™‘„†•V£‹‡™§‰†D‚Љ‰†‰„‰D…‰ƒ…BˆEˆ Ё‹„B‰„‚…‰‰’‹E„„……Gˆ XŠŽƒC…+†…„‡‡†ƒ……„§„‚‚…†š…„ŠŸ„¥‚…‡…‚ƒ©ˆ„†Š‚‡‚ƒ……^Š$…ˆ……‡ ÿÿÿ¶‚†ƒŠ‹–‘B„‡™„ˆŒC„‹‡††„‰‹ˆ†ˆ‹‚‚ˆ†¥„…ƒ†‡…‚‚D…†ˆH„…j‰…0‚‡„œ…†„ƒ„ˆƒˆ„…Š„‹„ˆ„…‹‡CƒF… „ƒŠB†M†ˆ‰„ƒHŠƒ„…’„„‚ŠHU†…’„ƒ|‚‹‹………………‹…………‹……………‹……‹…‹……‹…‹…‰‰„ŽŒ„…І†‚F… †‡ŠŠ—…‰ŸV… ‰‡„—ƒ]„‰_„%‡‡„ Š“…‰„|„?„‰„„P‰‰‰ƒRƒT”ŒBBŽ „…Љƒd„&ƒf„)Œƒ„‡o„2‰ „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ œ‹º¹‡‹‘£’„‹„–„‹ƒ‘¡‘ˆ Š šŠƒ„‚„ƒƒ‹ƒ„†ƒ‡›ƒŠŠƒŠŠƒŠŠ‡…ƒ†ƒ‡…ƒ†‚‚‡†‚…„‡†‚…„Ž7®q„1ƒX‰„ŠŒ_‰ŠŠŒ„f‰„Š‹#„m‰ŠŠ‹*„Q…ŠŠ‹—B€„J…„Š‹„†ƒ‰†ƒ‡†‰‰†‰‡†‰‰†‰‡‚ˆ‰‰‚ˆ‰‰„„—§§§§§§§§ /386/bin/ip/arpd 775 sys sys 796756426 51657 €ù ‰‰$è&' $ Ÿ uՃ|$ À‰$è\ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC¶B¶ÀÁà¶J¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC ‹C‹4 ¶É Á‰È¶J¶ÉÁá ȉC ÇC ‰ $‰\$‹L$$‰L$‹L$(‰L$ èyþÿÿƒÄÃc ùÿÿ‹T$ ‰Ãƒø „ … t ŸŸÀƒø"uC‰Ê)ډL$ŸŸÀƒø"uA‰L$ƒú@|º@ ‰Ê‰L$)Úë°ŸŸÀƒø tëAëÒAéBÿÿÿAéÿÿÿBé²þÿÿ1ÀƒÄÃAé$þÿÿƒì‹T$1ۉ\$‰Ý‰\$ ŸŸÀƒø#t ŸŸÀƒø uƒý ȉÁëï‹B‹JȋJ ȉÁëރì‹T$ ‹1Û)Ãû ‹J()ىJ,1ÀƒÄÃAD$‹L$‰ $‹L$$‰L$‰D$ ‰D$èí 뉋D$‹@Ã1À¹ÿÿÿÿü‹|$ò®‰û+\$‹|$‹t$‰ÙÁéó¥ƒã‰Ùó€‹D$Ë|$¹ÿÿÿÿ1Àüò®‰ù‹|$)ù¶D$ò®t1ÀÉøHÃü‹|$¶D$‹\$ ƒû vˆÄ‰ÁÁá ȉÙÁéƒãó«‰Ùóª‹D$Ë|$‹t$‹\$ ƒû „| ƒÄÃì‹D$f‰D$L$‰ $L$‰L$èaÿÿÿƒÄÃì‹T$ ƒú |ž,‘ |ž,‘ Éʃê‰T$‹B= Úºt èk* ˆ› „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿD ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿD ‹B= *ÆD$ * CJƒú âÿÿƒø  âÿÿ‹”$ì Bƒú!|äƒÄÃ$Õ|Ÿ D$()Á‰L$ƒû ‹T$)D$BëՉHœ Ÿ | ‰Ø™Ç$ tì1ۃû}ƒú t7ƒú t2‰èEˆ‹ÿŸŸÒCƒû|áƒú tƒú u ÆE tâƒù t.ƒù0|<ƒù97‰ØÇ$ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCTƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCXƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC\ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC`ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCdƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉClƒÂ¶B¶ÀÁà¶ ¶É Áf‰KpƒÂ¶B¶ÀÁà¶ ¶É Áf‰KrƒÂ‰Ð+D$ƒÄÃ=  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ ¶À=€ ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$è±ýÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-t‘ ælibc.h tring í.frame  “G£H„‹N„ K„oú£A•—O„‰B„—H„ C‰E„ ®K„  K‰„SŒ XŠŽƒC…G‚… Š”ˆFÁHׄ ‚Œ„…¥‚††‡……†„…‹„…‡©œ„‡†™A‹‡S›Šžƒ‰…‚ƒLˆ…ƒT„†„…‹žŽ‹Eˆƒ ‹§…†ˆ«…‹T„‹†£ˆ¢£†]„§†ˆ«…‹ „ ˜‚…‚…S‘… ˆƒˆ„…Š„‹„ˆ„…‹‡CƒF… „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ … ­–Ž•‘„‹œŠˆ€£‚…°ƒ‰„œ’ŠH˜Š•„\›„G ˜ŽŠ„X‚‰ˆ‰…‚‹˜ˆ‹…]‚™‘„œ‹ §§§§§§§§ ‰D$èY^ |‹„$Ø $‰T$ ¹¿­ ® ŸÉ¶ ŸÉ¶ uՃ|$ À‰$èÿ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC¶B¶ÀÁà¶J¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC ‹C‹4 ¶É Á‰È¶J¶ÉÁá ȉC ÇC ‰ $‰\$‹L$$‰L$‹L$(‰L$ èyþÿÿƒÄÃc ùÿÿ‹T$ ‰Ãƒø „ … t ŸŸÀƒø"uC‰Ê)ډL$ŸŸÀƒø"uA‰L$ƒú@|º@ ‰Ê‰L$)Úë°ŸŸÀƒø tëAëÒAéBÿÿÿAéÿÿÿBé²þÿÿ1ÀƒÄÃAé$þÿÿƒì‹T$1ۉ\$‰Ý‰\$ ŸŸÀƒø#t ŸŸÀƒø uƒý ȉÁëï‹B‹JȋJ ȉÁëރì‹T$ ‹1Û)Ãû ‹J()ىJ,1ÀƒÄÃAD$‹L$‰ $‹L$$‰L$‰D$ ‰D$èR 뉋D$‹@Ã1À¹ÿÿÿÿü‹|$ò®‰ø+D$HÃ1À¹ÿÿÿÿü‹|$ò®‰û+\$‹|$‹t$‰ÙÁéó¥ƒã‰Ùó€‹D$Ë|$¹ÿÿÿÿ1Àüò®‰ù‹|$)ù¶D$ò®t1ÀÉøHÃü‹|$¶D$‹\$ ƒû vˆÄ‰ÁÁá ȉÙÁéƒãó«‰Ùóª‹D$Ë|$‹t$‹\$ ƒû „| ƒÄÃì‹D$f‰D$L$‰ $L$‰L$èaÿÿÿƒÄÃì‹T$ ƒú |ž¥ |ž¥ P® õÿÿ‹l$<ʼnl$<·D$$·À‰Âƒú „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿ8  ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿ8  ‹B= *ÆD$ ÇD$ CJƒú Î $Ü Bƒú!|äƒÄÃ$Õ ¶ D$()Á‰L$ƒû ÿÿƒÄ|ÍD$‰$‹„$„ | ‰Ø™Ç$ tì1ۃû}ƒú t7ƒú t2‰èEˆ‹ÿŸŸÒCƒû|áƒú tƒú u ÆE tâƒù t.ƒù0|<ƒù97‰ØÇ$ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCTƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCXƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC\ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC`ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCdƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉClƒÂ¶B¶ÀÁà¶ ¶É Áf‰KpƒÂ¶B¶ÀÁà¶ ¶É Áf‰KrƒÂ‰Ð+D$ƒÄÃ=  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ ÃBÿD$ ¶¶À=€ ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$è±ýÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-ä  l ælibc.h 6æmain9.s í.frame †R„‰B„—…O„ JŠK„‰EŽ„VŒ Ÿ‹•‹œ‡‡‡£Ÿœ•‡•Žˆ_Œ§•Ž‹Œ‡™Ÿ„–]„ƒ‡ÿžªžž¥€„‚œ•ˆƒ« „g­©‡‹KÕ„C¯„C‡„ ‚Œ„…¥‚††‡……†„…‹„…‡©œ„‡†™A‹‡S›Šžƒ‰…‚ƒLˆ…ƒT„†„…‹žŽ‹Eˆƒ ‹§…†ˆ«…‹T„‹†£ˆ¢£†]„§†ˆ«…‹ „ XŠŽƒC…G‚… Š”ˆFÁHׄŠ/•iœˆ†‚…‡„•ˆ—„†… ˜‚…‚…S‘… †‡…‚‚D…†ˆH„…j‰…0‚‡„œ…†„ƒ„ˆƒˆ„…Š„‹„ˆ„…‹‡CƒF… „ƒŠB†M†ˆ‰„ƒHŠƒ„…’„„‚ŠHU†…’„ƒ „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ … ­–Ž•‘„‹œŠˆ€£‚…°ƒ‰„œ’ŠH˜Š•„\›„G ˜ŽŠ„X‚‰ˆ‰…‚‹˜ˆ‹…]‚œˆˆ‹¥‡ˆ‡…P‚™‘„œ‹J…Ÿ„ˆœŽ‹˜¡ŽS‚ ‰†‰‡†‰‰†‰‡‚ˆ‰‰‚ˆ‰‰„„—§§§§§§§§ €ù €ù ‚ÔþÿÿžÐ ‰Á‹Aƒø ‰Á‹Aƒø tžT˜ tžT˜ ûÿÿƒødtƒøg…ŠúÿÿÆEéóúÿÿÆEéêúÿÿÆEéáúÿÿƒøs é§úÿÿÆEéžúÿÿÆE‹Eƒø tžT˜ „õñÿÿéòÿÿ1É뚃ÃéÜòÿÿƒÃ‰ „ fDŽ$  uÞfƒ! Ç u··Àƒø t6‰ …xÿÿÿ··Àƒø t··Àƒø …^ÿÿÿƒÂëáƒÂé3ÿÿÿƒì ‹\$ºœŽ „Ž ƒ<Ýžá ytqƒútfƒú t[‰ÑÁù ƒáŸ užhn t.ƒø …Çûÿÿžhn  t‰ÐƒÂ· uJ‹ Ç8 u°ëÁ;T$Lt»·Bþ·Àƒø uœë­‹C‹ „Íýÿÿ‹L$‰ $‹K‰L$‰ñ‰t$8ƒÁ‰L$è” „öûÿÿ··Àƒø L$‰JŒ$Ü2 ƒb ‹L$ ‰JƒÂ‰| t.=ƒ Ç€ ·L$f‰ ·Bf‰D$·Kf‰J·L$f‰KƒÂ9êrŸƒÃ9ër±‹  f‰ ·Jf‰Kë׍D$9ʼnl$užm” ‰ $èä ‰ $èžôÿÿë͉ $è>ôÿÿëހ ȉÁëï‹B‹JȋJ ȉÁëރì‹\$‹S‰ÕEƒú ‹B(ض Zéÿÿÿ‹L$‹AƒøuÇA ƒb L$‰ $L$‰L$èaÿÿÿƒÄÃì‹T$ ƒú |žä” |žä”  „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿ¬ ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿ¬ ‹B= *ÆD$ ÇD$ CJƒú Bƒú!|äƒÄÃ$Õ •  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ ÃBÿD$ ¶¶À=€ ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$èþÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-ì ©=Pâ1PKMäZ>dÄKW`ñM}ùKmžn¡Ü/LDóÂääécL°ó^ä˜Lœp¥uÏL‘af‡irMõù?éO8MrøãÄbnMGû9»ý¢MzÈÑ)œ×MŸ˜:Ft¬ ælibc.a ile sg Párelist0 frame r lv ¥„•›Š‚EŠ‚A “‡‡ˆ†ˆƒ ƒŠS…P…‹ƒˆ…A… …… ˆŠ§‘• Ÿ‰‘• €‰˜M•„‚™††…B—”‚‚Š…Ž ƒˆI‚…ŽMŠƒˆ ‚ˆŠ‡•‰ …G„†C„B˜‘Œ•…ƒR„†…M… ˆ„J„–ˆ™…‚„HŸA ‡Ž‡…Šˆ_…#‚›”‚Bˆ‘Œ„†[ŠR‹€Œˆ†‹O„‚R„ƒƒŒˆ‹ƒÂ³ŠHœƒ•H†ƒ•Fˆ•C•Iœƒ•J††ƒ•ƒŠH•Cƒ(„†„…‰†§‹‹ˆ…‚ ‰”ŒˆŽ•ˆE”ŠF …‚„ˆ‡‡“A‡—„¡B› ‡‹™R„„Š“™ŒH£H„…–™‹B„„•ŽŠ…“‹C……ƒ•••’…H…F……D…€ ˆ†Œº¡ †‡‡ˆœŠŠŠ’ž„†º„†‹RŠ„K†ˆ‹‰„ ‚ˆ‚Aˆ‚D‹ ª‘ˆƒ‡‘ ’LˆˆWŽˆˆ… ŠŠ‡‘•ŒŒˆ‘• Œ‘V‰…Ї…‡ˆ‡ˆG†A† ˜‚…‚…S‘… ‹…‹…‰‰„ŽŒ„…І†‚F… †‡ŠŠ—…‰ŸV… ‰‡„—ƒ]„‰_„%‡‡„ Š“…‰„|„?„‰„„P‰‰‰ƒRƒT”ŒBBŽ „…Љƒd„&ƒf„)Œƒ„‡o„2‰ „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ ™†„…„Œ§„Šƒ§_‚‹™‹‰‰‡A•‚—U†“•„……C›AP— u_‰T$‹B ƒø ‹„$œ ž ~Ä€@ ‰T$u€=”p „  T$‰Áƒø ‹J()ىJ,1ÀƒÄÃAD$‹L$‰ $‹L$$‰L$‰D$ ‰D$èo ‹B(ض Zéÿÿÿ‹L$‹AƒøuÇA ¶À=€ |ž@p |ž@p Éʃê‰T$‹B= Úºt èï# d} „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿ0p ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿ0p ‹B= *ÆD$ ÇD$ CJƒú ~ $Ü Bƒú!|äƒÄÃ$Õ\| ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCTƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCXƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC\ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC`ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCdƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉClƒÂ¶B¶ÀÁà¶ ¶É Áf‰KpƒÂ¶B¶ÀÁà¶ ¶É Áf‰KrƒÂ‰Ð+D$ƒÄÃ=  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ d$ „| ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$è÷úÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-r ælibc.h rcmp.c al í.frame ‡ˆÅ‘Œ¯AˆMŒ…„‹”ˆK„‚Ÿ„®D„F„I„ L„ ‚‡‡®Š‡ƒƒ‹®…Ÿ”‹‹Í‹•…¬’‚Œˆ‚¯‚–…‚–…A‡%‚š†‡§ƒ†„ŠŠŠŒ‹¡\íšN „K‰H‰E„†B‹„OŒ#…žˆ–¥Š‚„ŠžF‰Œ‹ˆŠ–ŒL„Œ‹–ˆ„IŒŒ…˜ŸŒ„ˆˆ†Œ†„— ˆˆ ˆ„”†—”†I†Vˆ†¢†K„„(…žˆ† „†)¡B‡‡”†s£„!‡‡†¢†W–Š„„h†‡N„„ ˆˆ›„—Š•ƒˆˆ›„—Š•ƒ ‚Œ„•”ˆ‰ˆ•#§A•Š•lŠ/„‰…L^‡b€‡!„I „B’K™‡ „MƒN‰ˆ ”A¶„U¶„ ‘œ…F‹‹ „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ šŠƒ„‚„ƒƒ‹ƒ„†ƒ‡›ƒŠŠƒŠŠƒŠŠ‡…ƒ†ƒ‡…ƒ†‚‚‡†‚…„‡†‚…„Ž7®q„1ƒX‰„ŠŒ_‰ŠŠŒ„f‰„Š‹#„m‰ŠŠ‹*„Q…ŠŠ‹—B€„J…„Š‹„†ƒ‰†ƒ‡†‰‰†‰‡†‰‰†‰‡‚ˆ‰‰‚ˆ‰‰„„—§§§§§§§§ Çp ŸÉ‰ $èÏ u©ëœ;t$Tt·ŸFÿŸÀƒø u•ë©‹B‹8‹JƒÁ9ùs„·f9D$0r ·Af9D$0vƒÁëâ‹L$‰ $‹J‰L$‰é‰l$@ƒÁ‰L$è „Þýÿÿ‹L$‰ $‹J‰L$‰é‰l$@ƒÁ‰L$èŽ L$‰JŒ$€e ƒb ‹L$ ‰JƒÂ‰Dp t.=ƒ Ç8p ·L$f‰ ·Bf‰D$·Kf‰J·L$f‰KƒÂ9êrŸƒÃ9ër±‹pp f‰ ·Jf‰Kë׍D$9ʼnl$užmq ‰ $èü ‰ $èžôÿÿë͉ $è>ôÿÿëހ  ȉÁëï‹B‹JȋJ ȉÁëÞƒì ‹T$$‹D$(‰D$‹t$,‹*ƒþ ‹J()ىJ,1ÀƒÄÃAD$‹L$‰ $‹L$$‰L$‰D$ ‰D$èï ë‰1À¹ÿÿÿÿü‹|$ò®‰ø+D$HÃ1À¹ÿÿÿÿü‹|$ò®‰û+\$‹|$‹t$‰ÙÁéó¥ƒã‰Ùó€‹D$Ã1À¹ÿÿÿÿü‹|$ò®‰û+\$‹|$ò®O‹t$‰ÙÁéó¥ƒã‰Ùó€‹D$ËD$ƒø  |žt |žt X¢ „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿXp ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿXp ‹B= *ÆD$ ÇD$ CJƒú Bƒú!|äƒÄÃ$ÕP¡  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ ԃì‹T$ƒd$ ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$èþÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-tp œÉF"ãŠÈF|Øê›ÐþF‚MÇraB3Gã yÏùhGiWCžžG±¡*ÓÎÒGJœô‡‚H¥\Ãñ)c=Hç7ú]rHa àÄxõŠHyÈöÖ²ÜHL}ÏYÆïIž\Cð·kFIÆ3Tì¥|I\ Ž³'„±IsÈ¡ 1ååI:Ê~^Jšd~ÅQJÀýÝvÒa…J0}•GººJ>nÝllŽðJÎɈ‡á$KAüjéZK©=Pâ1PKMäZ>dÄKW`ñM}ùKmžn¡Ü/LDóÂääécL°ó^ä˜Lœp¥uÏL‘af‡irMõù?éO8MrøãÄbnMGû9»ý¢MzÈÑ)œ×MŸ˜:Ft¬ ælibc.a ælibc Párelist0 Ôdoprint Ô_v2uc º¡ †‡‡ˆœŠŠŠ’ž„†º„†‹RŠ„K†ˆ‹‰„ ‚ˆ‚Aˆ‚D‹ ª‘ˆƒ‡‘ ’LˆˆWŽˆˆ… ŠŠ‡‘•ŒŒˆ‘• Œ‘V‰…Ї…‡ˆ‡ˆG†A† ˜‚…‚…S‘… ŽŒ„…І†‚F… †‡ŠŠ—…‰ŸV… ‰‡„—ƒ]„‰_„%‡‡„ Š“…‰„|„?„‰„„P‰‰‰ƒRƒT”ŒBBŽ „…Љƒd„&ƒf„)Œƒ„‡o„2‰ „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ C„’ /386/bin/aux/faxsend 775 sys sys 796755965 49835 ÿȋ‹| ƒŒ$¬ „/ÿÿÿžM‹ ÿ‹‰€ Ãì€ t±ŸŸÀƒø ȉÁëï‹B‹JȋJ ȉÁëÞƒì ‹T$$‹D$(‰D$‹t$,‹*ƒþ ‹J()ىJ,1ÀƒÄÃAD$‹L$‰ $‹L$$‰L$‰D$ ‰D$è¢ ‹B(ض Zéÿÿÿ‹L$‹AƒøuÇA „“ ÄÃì‹T$ ƒú |žŒˆ |žŒˆ ˜˜ „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿ € ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿ € ‹B= *ÆD$ ÇD$ CJƒú » $Ü Bƒú!|äƒÄÃ$Õ(• ÞÿÿL$‰ $¹ D$()Á‰L$ƒû ‹T$)D$BëՉš‹ | ‰Ø™Ç$ tì1ۃû}ƒú t7ƒú t2‰èEˆ‹ÿŸŸÒCƒû|áƒú tƒú u ÆE tâƒù t.ƒù0|<ƒù97‰ØÇ$ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCTƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCXƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC\ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC`ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCdƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉClƒÂ¶B¶ÀÁà¶ ¶É Áf‰KpƒÂ¶B¶ÀÁà¶ ¶É Áf‰KrƒÂ‰Ð+D$ƒÄÃ=  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ øƒðÿ!D$ëԃì‹T$ƒd$ „| ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$è—ûÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-@ ˜Lœp¥uÏL‘af‡irMõù?éO8MrøãÄbnMGû9»ý¢MzÈÑ)œ×MŸ˜:Ft¬ ælibc.h í.frame Žˆ˜‘Q… …F…I… h„œŠ „…ˆ˜F‰ †Ž…‰“˜I‚1‚Ÿ”‰Œ… ˜‚…‚…S‘… ‚D…†ˆH„…j‰…0‚‡„œ…†„ƒ„ˆƒˆ„…Š„‹„ˆ„…‹‡CƒF… „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ … ­–Ž•‘„‹œŠˆ€£‚…°ƒ‰„œ’ŠH˜Š•„\›„G ˜ŽŠ„X‚‰ˆ‰…‚‹˜ˆ‹…]‚™‘„œ‹ §§§§§§§§ ° ÀƒÄ Þz ëÚÿL$,ƒÃéœþÿÿ‹‰p Ãì€ t±ŸŸÀƒø ‹\$‰Â밃ì‹T$‹Bƒøt2ƒøt8ƒøt(ž ȉÁëï‹B‹JȋJ ȉÁëÞƒì ‹T$$‹D$(‰D$‹t$,‹*ƒþ ‹J()ىJ,1ÀƒÄÃAD$‹L$‰ $‹L$$‰L$‰D$ ‰D$èŠ ë‰1À¹ÿÿÿÿü‹|$ò®‰ø+D$HÃ1À¹ÿÿÿÿü‹|$ò®‰û+\$‹|$‹t$‰ÙÁéó¥ƒã‰Ùó€‹D$Ë|$¹ÿÿÿÿ1Àüò®‰ù‹|$)ù¶D$ò®t1ÀÉøHË|$‹t$‹\$ ƒû „“ ÄÃì‹T$ ƒú |žtx |žtx | „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿ(p ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿ(p ‹B= *ÆD$ ÇD$ CJƒú Bƒú!|äƒÄÃ$ÕŽ D$()Á‰L$ƒû ‹T$)D$BëՉT | ‰Ø™Ç$ tì1ۃû}ƒú t7ƒú t2‰èEˆ‹ÿŸŸÒCƒû|áƒú tƒú u ÆE tâƒù t.ƒù0|<ƒù97‰ØÇ$ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCTƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCXƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC\ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉC`ƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉCdƒÂ¶B¶ÀÁà¶ ¶É Á‰È¶J¶ÉÁá ȶJ¶ÉÁá ȉClƒÂ¶B¶ÀÁà¶ ¶É Áf‰KpƒÂ¶B¶ÀÁà¶ ¶É Áf‰KrƒÂ‰Ð+D$ƒÄÃ=  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ øƒðÿ!D$ëԃì‹T$ƒd$ ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$èþÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-q äZ>dÄKW`ñM}ùKmžn¡Ü/LDóÂääécL°ó^ä˜Lœp¥uÏL‘af‡irMõù?éO8MrøãÄbnMGû9»ý¢MzÈÑ)œ×MŸ˜:Ft¬ ælibc.h æabort.c í.frame ‘”–˜Q…*„aŒ’Ž„Q‘Š…– ˜|–˜ Žˆ˜‘Q… …F…I… h„œŠ „…ˆ˜F‰ †Ž…‰“˜I‚1‚Ÿ”‰Œ… ˜‚…‚…S‘… ‹………………‹…………‹……………‹……‹…‹……‹…‹…‰‰„ŽŒ„…І†‚F… †‡ŠŠ—…‰ŸV… ‰‡„—ƒ]„‰_„%‡‡„ Š“…‰„|„?„‰„„P‰‰‰ƒRƒT”ŒBBŽ „…Љƒd„&ƒf„)Œƒ„‡o„2‰ „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ … ­–Ž•‘„‹œŠˆ€£‚…°ƒ‰„œ’ŠH˜Š•„\›„G ˜ŽŠ„X‚‰ˆ‰…‚‹˜ˆ‹…]‚™‘„œ‹ §§§§§§§§ ŸÉ‰L$è„ ˆBŸ€ø …’ „GÿÿÿD$  |žôP |žôP „Æ |$üÿÿu«ƒû*u-‹D$@‹‹D$@ƒÀ‰D$@|$üÿÿu ‰L$éÿÿÿ‰L$é ÿÿÿ1҃û ,ÇD$D ‹K1Ò)ʉS1í‹C=üÿÿt ‹Cƒø t ÿP ‹K1Ò)ʉS1í‰l$‹C=üÿÿt ‹Cƒø t ÿP ‹B= *ÆD$ ÇD$ CJƒú »  Bƒú!|äƒÄÃ$ÕÀa  ‰Ñ‰ýÓå‰Ñ‰ðÓ๠9ûu ;l$s‰ØÑà‰éÁé ȉÃÑåÿ$9ûrê9ûtàƒd$ l$ ƒú | ƒ# ËT$‹L$ L$‰J‹L$ L$‰ ËT$‹L$ 3L$‰J‹L$3L$‰ Ë\$‹T$‹J‰K‹ ‰ ÿ‹ƒø ‰ ‹ƒø Ë\$‹T$ÿ‹ƒø ‰ Ë\$‹T$‹ƒø ‹J‰K‹ ‰ Ãì‹\$$‹L$ ‹T$(‹D$,ƒø› ƒ|$ ‹L$;L$t1ÀÞ ƒÄÃÙîÝÝD$ƒÄÃÝD$Ý\$‹D$Áø%ÿ „| ÙèÜD$Ý\$ÙîÜd$Ý\$ÝD$ƒÄÃÝD$Ý$D$‰D$èWùÿÿÝØëàƒìÙîÜd$ Ý$è†ÿÿÿÜ-ìP $KAüjéZK©=Pâ1PKMäZ>dÄKW`ñM}ùKmžn¡Ü/LDóÂääécL°ó^ä˜Lœp¥uÏL‘af‡irMõù?éO8MrøãÄbnMGû9»ý¢MzÈÑ)œ×MŸ˜:Ft¬ ælibc.h l Ô_testv —†ˆ„‹‰é‡FŒ „ˆŽÝ‚„‚†‚ƒ„Š“††……†…†‡H…F…RŽÇ—НU„Ž‹„ŠY„\ª‡„E™‰‡„O…‡„U„‰‡„_…‡„Z…‡„B’b‡#„i‡(„O„‰‡ „CALƒ ‰G…P„†S„‘V„ …V‘Šˆ†…D/ŠŠ‰…• ŒŠ›…‰„‘ƒE‰†ˆ†…DZ„•ˆ‡ˆ¡‰‚ ‰G…V„†Y„‘\„…L„„P‘Žˆ†…D6†ˆˆ‘—A„†„„ƒ†ƒ…‚„†…‚Š‹†ž†ˆŠ‡„„‹ˆE„„‹ƒˆ†…‚Œ…Œ …I‡ƒ†‡D††G†˜‡U„Y„Q„M„ •‡‡„–‹SЇƒ„‡…„˜˜š„H‡G‡„Q¡‡ŒŠŒ‡„H‚C‚eˆ„‡„M•‡„f®„Mœ„dƒ„Y‡Š„ ‡‚ˆ‰‰‚ˆ‰‰„„—§§§§§§§§ /386/lib/alef 20000000775 sys sys 796755041 0 /386/lib/alef/libbio.a 664 sys sys 796754983 42798 ! __.SYMDEF 796754980 0 0 644 454 ` T†›  ~ ~ W ~ __.SYMDEF 796754984 0 0 644 312 ` T˜Ê ~ e  ~  ~ !>W & Sp p  t @ W W C p C ~ ~  M ~ ~ (>£ pushand >~ ~ ìÿÿÿ ?p  ~  ìÿÿÿ-?p  p op2 ? p p  Sp p  p  p  p  p  W W  p O W  p  p  p OW                          p  p Up ~ S~ ~ Sp yyrune >p & p AX AX W W  W ~  w  w  W type ?W p S~ p     ƒ7³Ap    ALEF_chana =~ þ .s7 > in eval~ ~ ude strcat =~ ~ e ~ ~ W C s C p C s C s C s ~ ~ ~ ms @AS  p W  W p  p W ~ ude ~ checkstart ?~ p p p Ðÿÿÿ?p W nle ? &  ôÿÿÿ?p ~ W mp @p ª ~ e W  w  p  w  w  w ! __.SYMDEF 796754991 0 0 644 324 ` Tô ~ p S~ ~ p W p p S~ p p  &    W & AO Ðÿÿÿ?p S~ first ? ~ Op ðÿÿÿ?W & O~ ðÿÿÿ?~ W & p  ~ ~ W nt ôÿÿÿ ?p  ~ X W & AO ôÿÿÿ?p  W ~ lef ~ W AO .s3 > ~ lef W øÿÿÿ?p  nt ?W p ~  X W & AO øÿÿÿ?p  W & p   ~ W AX s ? p & AX p S~ & AX & AO Äÿÿÿ?p S~ & p S~ Äÿÿÿ#?p S~ s ?p & AO & AX  s ? p <~ .s24 Dp  .s15 > %I ~ __.SYMDEF 796754997 0 0 644 500 ` T| ~  p p Ö p  ÿÿ-? p p Rp p  bn @~ p p &   ~ E ~ E~ &    ðÿÿÿ$?X q     p Üÿÿÿ? ~ sp @ p  p ~  p p @p  frselectf =~ Ï pt0 ?p f Ö q @ 2 &  S 2 q B pt1 ?~ Ö  ~ y p W b Ðÿÿÿ ?p ~ ~ Ðÿÿÿ ?p r ? ~ W ~ p ~  L ~ ppt0 ?p p  q @ p 0 p 4 ~ clude ibframe.a W ~ ôÿÿÿ?p  p @ & AP & L p W øÿÿÿ  W  ~ ~ ~ ~ S~ ~ S~ f @~ 2  ~ ÿ/?p qt ?p ~ p  p  .s1 > fpt ~ e a p S~ mp ? p Ö  p ÿ? ~ p S~ frselectf =~ p Sp ~      W                 ~ S~ q Sp p1 @ & 2 ~ p q1 ? p p Sp p S~ ~ __.SYMDEF 796755014 0 0 644 956 ` T  = = ~ lef.h p2 @p p S~ p S~ p S~  p  p  ~  p ey ? p &  S   p  p x2 ? p ~  ~  ~ E„ Ö  p Ö  & ~ a  s @AX & o & p S~ p p ~ lÿÿÿ)?p S~ & ~ øÿÿÿ+?p S~ ~ øÿÿÿ1?p  Ê ‡  Ê screen =s Ê ‡  Ê Ê ‡  Ê Ê ‡  Ê Ê ‡  Ê       Ê  ‡   Ê    Ê ‡  Ê Ê ‡  Ê & ~ Sp o p Sp mkfont =& p s @p .s7 > ~ ~ p p p @ o ~ E bscreenr~ ~ ~ @~ .t0 ?p Ö p  Üÿÿÿ?p  S~ dxsq ?~ ~ lef @ lfloor >~ s W W p  ~ øÿÿÿ?Ö ~ W W ~ ~  & p1 ?p p & AP p p  ~ p ~ p W W p W p  ~ r @ ~ S~ ~ ~ ~ AX  ~ ~ AX     _gmajor =~ W p  p  ~ E itmap fo~ ~ f  p  p x @  p Ö  p bp @p  ~ ~ " p @~ 2 ¬ ~ & i ? & ÿÿÿÿAX Vp    p W  P  ~ øÿÿÿ?~  ¬  ~ øÿÿÿ ?~ off @  p s W  Ö = Ö p r ?~ p  p   p W menu @ & AX  p p ~ ìÿÿÿ?C 2 & Q S  Ö & AP p S Ö p äÿÿÿ?Ö ~ ¯  p r ?~ p screen Dp ?$r but @ ~ ¬ ~ & p  A~ èÿÿÿ$?U ¬ ~ & ~ nitemdrawn ?¯ & AP ~ S ~ p ~  O äÿÿÿ?p  ~  O p S~ & AU  ~  p m @p ~ ~  malloc =~ p ôÿÿÿ?o ~ p p & Ow  ~ E~ ~ ~ p `ÿÿÿ?o & & p ~  M R fnt ? p & O~ ~ ôÿÿÿ?p p p S~ W P  ~ øÿÿÿ,?¬ ~ W free =~ p ~ ude p p p  C d ? p p & _btmp =~ ~ W = p S~ p S~ subfalloc =p -.s0 ~ lef  & P & U & U & U ~ ~ p ¬ p  p n ?S ~ èóÿÿ"?p ~ f p p1 @¯ ~ ~ ~ bneed =~ p  W  W ~ lef ~ ôÿÿÿ?W n ?~ ~ ôÿÿÿ?W W p S~ p  ~ O~ ~  ~ lef ¬ p  p m @ p p p p p  ~ ude > berror =p p p p  C  ~ Èÿÿÿ?Ö ! __.SYMDEF 796755023 0 0 644 304 ` T’ ~ > cÿÿÿ$?p werrstr =p .s11 > hcheck 5 ~ ~ ~ include n tbuf ?p ~ AU S~ ~ Ep & p S~ S~ ~ .s4 > d ~ lef  file @~ p  W S~ & AO C s W argv0 ? p ~   & ~ auth =& p S~ p W  W @s C ~ @o p p  ~ Èÿÿÿ+?p  arg @~  p p Èÿÿÿ#? &  C  ~ p S~ p S~ close =p 0 0 664 2093 ` ~ ~ ~ include  pbmsg >o &  p  S~  S~ ~ e     read =~ ~ e >pbmsg pbmsg >o &  ! __.SYMDEF 796755099 0 0 644 2918 ` T~ Lock_canlock Ê ã ã D D D ~ /net//cl~ ~ h end D~  p ~ E p S~ W W  )>p   p W ôÿÿÿ.?p S~ ~ S~ ~ W p W  ~ ôÿÿÿ?Ö ~ W xtime  >p S~  p  dysize > AX   ~ ~ ~  p &    Op C   .s4 > ~ f.h & o name ? p o AO S~ ~ AO p  p S~ p p S~ PW p S~ & p   net ?~ p S~ & o & o  .s4 > ~ ~ ~ f ~ ~   .s0 > --- ~ E d %d ad ta~ .s16 > |0x%ux >,.s10 .s7 > fid %d u~ ~  ~ y ~ lef.h p p / & ~ av @ p p S~ p S~ & p  p / ~  s1p > 1p s1p > ;X s2p >  s3p > s4p >„ s4p > s5p > s6p >A~ s7p > s7p >@ C æ  ¬ C æ  ¬ C æ  ¬ C æ  ¬ C æ  ¬ C æ  ¬ C æ  ¬ C æ  ¬ ‡ ~ p fp >£ s Í ¬ ~ p p s ¬ ~ p Ö s Í ¬ ~ p p s Í ¬ ~ p Ö ¬ ~ p ¬ ~ p v ? p eyexpand keyexpand > keyexpand > pand keyexpand > pand keyexpand >F  keyexpand >  keyexpand >a pand keyexpand > pand keyexpand >A~ pand keyexpand > keyexpand keyexpand >   keyexpand > pand keyexpand >D pand keyexpand > pand keyexpand >p d keyexpand >   keyexpand > pand keyexpand > keyexpand >" keyexpand > ; keyexpand >L keyexpand >  keyexpand >i keyexpand >  keyexpand >  keyexpand > pand keyexpand >;  keyexpand > pand keyexpand >h keyexpand >  keyexpand >A~  keyexpand >  keyexpand > keyexpand >  keyexpand >5  ¬ p  s ¬ p  s ‡ p  o OC ~ f  flags D~ conv & AX convcount > ~ (  C ~ >o    W P  s p W   ~  ~ C & % AX  o O~   f2 ?W ~  s ¬ ~  p & ~  ~ & 9 ~ ~  o O& ~ s ? p  p C & AO  o O~   p  p ~ p Sp s ¬ ~  p  S~ W p S~ strconv =p p  p ÿÿ? p  p  p p  p W & S~ & S~  f ?ü p Üÿÿÿ?Ö p p & AQ &  Ôÿÿÿ0?U ~  & P i ?Ö ~ ~  Ö o  o    s2 ?p ~  s Ö W AU  s W W  p  & O C  o p C  o  C  o ~ lef.h .t0 ?~ ~  & AP p   ¬ ¯ ~ ~ E rors ~ Ep ~ øÿÿÿ?W W ~ E rgsq arg @~ ~  U O O O O temp ?~ ~            c @ p    p S~ ~ ys    _exits =£ X ~ Sp ALEFalloc =p  p p ôÿÿÿ?p  k ~ ys    tdb ôÿÿÿ ?p  ~ ys p   p S~ b ?p p S~ p S~ & AO  ~ ~ @ p   p S~ b ?p p S~ p S~ & AO  ~ ~  c @ p          p S~ & AO  ~ EÌ` àÀx0€À`0c1˜Ìf3ŒÆc1˜ÌfÓi˜Âf€À`0&‰€b`€À`0 ŒÆû1Ÿ gÃðÆ|1Ÿ f€Æ`1˜ gó¹üÆ €`0 Œa€3ÀÐh0 ƒ €  22 18 0x0000 0x007F ascii.12 /lib/font/bit/pelm/supsub.8 664 sys sys 734583811 722 0 0 0 248 14 0 0 0 2048 30 þ 16 13 0x0000 0x00FF latin1.9 0x2100 0x2138 ../misc/letterlike.8 /lib/font/bit/pelm/latin1.8 664 sys sys 734583811 5222 0 0 0 2048 14 02~~~~<<<>>>>>~`~~~~fffffff~~ffff4f4$B ""    8,"   "  $   À|~ÆF   "   0 0 0 2198 16 D DâqÈd2 ƒ ÏÏߌïïïã f<6þٍŒÉŒÈÿ‚A † ƒ † † ¿Ær   14 11 0x0000 0x00FF latin1.8 0x2100 0x2138 ../misc/letterlike.8 /lib/font/bit/pelm/unicode.9.font 664 sys sys 747684900 1982 18 14 0x0000 0x00FF latin1.9 0x0100 0x017E latineur.9 0x0250 0x02E9 ../lucm/ipa.9 0x0370 0x03F5 ../lucm/greek.9 0x0400 0x0475 ../misc/cyrillic.9 0x2000 0x2044 ../misc/genpunc.9 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2100 0x2138 ../misc/letterlike.8 0x215b 0x2183 ../misc/numbforms.9 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2580 0x25ff ../misc/geometric 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0x3000 0x303f ../jis/jis3000.16 0x30a1 0x30fe ../jis/katakana.16 0x3041 0x309e ../jis/hiragana.16 0x4e00 0x4fff ../jis/jis4e00.16 0x5000 0x51ff ../jis/jis5000.16 0x5200 0x53ff ../jis/jis5200.16 0x5400 0x55ff ../jis/jis5400.16 0x5600 0x57ff ../jis/jis5600.16 0x5800 0x59ff ../jis/jis5800.16 0x5a00 0x5bff ../jis/jis5a00.16 0x5c00 0x5dff ../jis/jis5c00.16 0x5e00 0x5fff ../jis/jis5e00.16 0x6000 0x61ff ../jis/jis6000.16 0x6200 0x63ff ../jis/jis6200.16 0x6400 0x65ff ../jis/jis6400.16 0x6600 0x67ff ../jis/jis6600.16 0x6800 0x69ff ../jis/jis6800.16 0x6a00 0x6bff ../jis/jis6a00.16 0x6c00 0x6dff ../jis/jis6c00.16 0x6e00 0x6fff ../jis/jis6e00.16 0x7000 0x71ff ../jis/jis7000.16 0x7200 0x73ff ../jis/jis7200.16 0x7400 0x75ff ../jis/jis7400.16 0x7600 0x77ff ../jis/jis7600.16 0x7800 0x79ff ../jis/jis7800.16 0x7a00 0x7bff ../jis/jis7a00.16 0x7c00 0x7dff ../jis/jis7c00.16 0x7e00 0x7fff ../jis/jis7e00.16 0x8000 0x81ff ../jis/jis8000.16 0x8200 0x83ff ../jis/jis8200.16 0x8400 0x85ff ../jis/jis8400.16 0x8600 0x87ff ../jis/jis8600.16 0x8800 0x89ff ../jis/jis8800.16 0x8a00 0x8bff ../jis/jis8a00.16 0x8c00 0x8dff ../jis/jis8c00.16 0x8e00 0x8fff ../jis/jis8e00.16 0x9000 0x91ff ../jis/jis9000.16 0x9200 0x93ff ../jis/jis9200.16 0x9400 0x95ff ../jis/jis9400.16 0x9600 0x97ff ../jis/jis9600.16 0x9800 0x99ff ../jis/jis9800.16 0x9a00 0x9bff ../jis/jis9a00.16 0x9c00 0x9dff ../jis/jis9c00.16 0x9e00 0x9fff ../jis/jis9e00.16 0xfee0 0xff5e latin1.9 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/pelm/ascii.16.font 664 sys sys 734583811 29 30 23 0x0000 0x007F ascii.16 /lib/font/bit/pelm/supsub.9 664 sys sys 734583811 848 0 0 0 279 16 0 0 0 106 16 ` j  18 14 0x0000 0x00FF latin1.9 0x0100 0x017E latineur.9 0x0250 0x02E9 ../lucm/ipa.9 0x0370 0x03F5 ../lucm/greek.9 0x0400 0x0475 ../misc/cyrillic.9 0x2000 0x2044 ../misc/genpunc.9 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2100 0x2138 ../misc/letterlike.8 0x215b 0x2183 ../misc/numbforms.9 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2580 0x25ff ../misc/geometric 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0xfee0 0xff5e latin1.9 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/pelm/euro.8.font 664 sys sys 767901713 572 14 11 0x0000 0x00FF latin1.8 0x0100 0x017E latineur.8 0x0250 0x02E9 ../misc/ipa.8 0x0370 0x03F5 ../misc/greek.8 0x0400 0x0475 ../misc/cyrillic.9 0x2000 0x2044 ../misc/genpunc.8 0x2070 0x208E supsub.8 0x20A0 0x20AA currency.9 0x2100 0x2138 ../misc/letterlike.8 0x215b 0x2183 ../misc/numbforms.9 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2580 0x25ff ../misc/geometric 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0xfee0 0xff5e latin1.8 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/pelm/hku.9.font 664 sys sys 747684928 1767 18 14 0x0000 0x00FF latin1.9 0x0100 0x017E latineur.9 0x0250 0x02E9 ../lucm/ipa.9 0x0370 0x03F5 ../lucm/greek.9 0x0400 0x0475 ../misc/cyrillic.9 0x2000 0x2044 ../misc/genpunc.8 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0x30a1 0x30fe ../jis/katakana.16 0x3041 0x309e ../jis/hiragana.16 0x4e00 0x4fff ../big5/4e00.16 0x5000 0x51ff ../big5/5000.16 0x5200 0x53ff ../big5/5200.16 0x5400 0x55ff ../big5/5400.16 0x5600 0x57ff ../big5/5600.16 0x5800 0x59ff ../big5/5800.16 0x5a00 0x5bff ../big5/5a00.16 0x5c00 0x5dff ../big5/5c00.16 0x5e00 0x5fff ../big5/5e00.16 0x6000 0x61ff ../big5/6000.16 0x6200 0x63ff ../big5/6200.16 0x6400 0x65ff ../big5/6400.16 0x6600 0x67ff ../big5/6600.16 0x6800 0x69ff ../big5/6800.16 0x6a00 0x6bff ../big5/6a00.16 0x6c00 0x6dff ../big5/6c00.16 0x6e00 0x6fff ../big5/6e00.16 0x7000 0x71ff ../big5/7000.16 0x7200 0x73ff ../big5/7200.16 0x7400 0x75ff ../big5/7400.16 0x7600 0x77ff ../big5/7600.16 0x7800 0x79ff ../big5/7800.16 0x7a00 0x7bff ../big5/7a00.16 0x7c00 0x7dff ../big5/7c00.16 0x7e00 0x7fff ../big5/7e00.16 0x8000 0x81ff ../big5/8000.16 0x8200 0x83ff ../big5/8200.16 0x8400 0x85ff ../big5/8400.16 0x8600 0x87ff ../big5/8600.16 0x8800 0x89ff ../big5/8800.16 0x8a00 0x8bff ../big5/8a00.16 0x8c00 0x8dff ../big5/8c00.16 0x8e00 0x8fff ../big5/8e00.16 0x9000 0x91ff ../big5/9000.16 0x9200 0x93ff ../big5/9200.16 0x9400 0x95ff ../big5/9400.16 0x9600 0x97ff ../big5/9600.16 0x9800 0x99ff ../big5/9800.16 0x9a00 0x9bff ../big5/9a00.16 0x9c00 0x9dff ../big5/9c00.16 0x9e00 0x9fff ../big5/9e00.16 0xfee0 0xff5e latin1.9 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/pelm/jis.9.font 664 sys sys 747684916 1916 18 14 0x0000 0x00FF latin1.9 0x0100 0x017E latineur.9 0x0250 0x02E9 ../lucm/ipa.9 0x0370 0x03F5 ../lucm/greek.9 0x0400 0x0475 ../misc/cyrillic.9 0x2000 0x2044 ../misc/genpunc.8 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2100 0x2138 ../misc/letterlike.8 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0x3000 0x303f ../jis/jis3000.16 0x30a1 0x30fe ../jis/katakana.16 0x3041 0x309e ../jis/hiragana.16 0x4e00 0x4fff ../jis/jis4e00.16 0x5000 0x51ff ../jis/jis5000.16 0x5200 0x53ff ../jis/jis5200.16 0x5400 0x55ff ../jis/jis5400.16 0x5600 0x57ff ../jis/jis5600.16 0x5800 0x59ff ../jis/jis5800.16 0x5a00 0x5bff ../jis/jis5a00.16 0x5c00 0x5dff ../jis/jis5c00.16 0x5e00 0x5fff ../jis/jis5e00.16 0x6000 0x61ff ../jis/jis6000.16 0x6200 0x63ff ../jis/jis6200.16 0x6400 0x65ff ../jis/jis6400.16 0x6600 0x67ff ../jis/jis6600.16 0x6800 0x69ff ../jis/jis6800.16 0x6a00 0x6bff ../jis/jis6a00.16 0x6c00 0x6dff ../jis/jis6c00.16 0x6e00 0x6fff ../jis/jis6e00.16 0x7000 0x71ff ../jis/jis7000.16 0x7200 0x73ff ../jis/jis7200.16 0x7400 0x75ff ../jis/jis7400.16 0x7600 0x77ff ../jis/jis7600.16 0x7800 0x79ff ../jis/jis7800.16 0x7a00 0x7bff ../jis/jis7a00.16 0x7c00 0x7dff ../jis/jis7c00.16 0x7e00 0x7fff ../jis/jis7e00.16 0x8000 0x81ff ../jis/jis8000.16 0x8200 0x83ff ../jis/jis8200.16 0x8400 0x85ff ../jis/jis8400.16 0x8600 0x87ff ../jis/jis8600.16 0x8800 0x89ff ../jis/jis8800.16 0x8a00 0x8bff ../jis/jis8a00.16 0x8c00 0x8dff ../jis/jis8c00.16 0x8e00 0x8fff ../jis/jis8e00.16 0x9000 0x91ff ../jis/jis9000.16 0x9200 0x93ff ../jis/jis9200.16 0x9400 0x95ff ../jis/jis9400.16 0x9600 0x97ff ../jis/jis9600.16 0x9800 0x99ff ../jis/jis9800.16 0x9a00 0x9bff ../jis/jis9a00.16 0x9c00 0x9dff ../jis/jis9c00.16 0x9e00 0x9fff ../jis/jis9e00.16 0xfee0 0xff5e latin1.9 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/pelm/song.9.font 664 sys sys 747684907 1890 18 14 0x0000 0x00FF latin1.9 0x0100 0x017E latineur.9 0x0250 0x02E9 ../lucm/ipa.9 0x0370 0x03F5 ../lucm/greek.9 0x0400 0x0475 ../misc/cyrillic.9 0x2000 0x2044 ../misc/genpunc.8 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0x30a1 0x30fe ../jis/katakana.16 0x3041 0x309e ../jis/hiragana.16 0x4e00 0x4fff ../gb/Song.4e00.16 0x5000 0x51ff ../gb/Song.5000.16 0x5200 0x53ff ../gb/Song.5200.16 0x5400 0x55ff ../gb/Song.5400.16 0x5600 0x57ff ../gb/Song.5600.16 0x5800 0x59ff ../gb/Song.5800.16 0x5a00 0x5bff ../gb/Song.5a00.16 0x5c00 0x5dff ../gb/Song.5c00.16 0x5e00 0x5fff ../gb/Song.5e00.16 0x6000 0x61ff ../gb/Song.6000.16 0x6200 0x63ff ../gb/Song.6200.16 0x6400 0x65ff ../gb/Song.6400.16 0x6600 0x67ff ../gb/Song.6600.16 0x6800 0x69ff ../gb/Song.6800.16 0x6a00 0x6bff ../gb/Song.6a00.16 0x6c00 0x6dff ../gb/Song.6c00.16 0x6e00 0x6fff ../gb/Song.6e00.16 0x7000 0x71ff ../gb/Song.7000.16 0x7200 0x73ff ../gb/Song.7200.16 0x7400 0x75ff ../gb/Song.7400.16 0x7600 0x77ff ../gb/Song.7600.16 0x7800 0x79ff ../gb/Song.7800.16 0x7a00 0x7bff ../gb/Song.7a00.16 0x7c00 0x7dff ../gb/Song.7c00.16 0x7e00 0x7fff ../gb/Song.7e00.16 0x8000 0x81ff ../gb/Song.8000.16 0x8200 0x83ff ../gb/Song.8200.16 0x8400 0x85ff ../gb/Song.8400.16 0x8600 0x87ff ../gb/Song.8600.16 0x8800 0x89ff ../gb/Song.8800.16 0x8a00 0x8bff ../gb/Song.8a00.16 0x8c00 0x8dff ../gb/Song.8c00.16 0x8e00 0x8fff ../gb/Song.8e00.16 0x9000 0x91ff ../gb/Song.9000.16 0x9200 0x93ff ../gb/Song.9200.16 0x9400 0x95ff ../gb/Song.9400.16 0x9600 0x97ff ../gb/Song.9600.16 0x9800 0x99ff ../gb/Song.9800.16 0x9a00 0x9bff ../gb/Song.9a00.16 0x9c00 0x9dff ../gb/Song.9c00.16 0x9e00 0x9fff ../gb/Song.9e00.16 0xfee0 0xff5e latin1.9 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/pelm/fangsong.9.font 664 sys sys 747684922 2054 18 14 0x0000 0x00FF latin1.9 0x0100 0x017E latineur.9 0x0250 0x02E9 ../lucm/ipa.9 0x0370 0x03F5 ../lucm/greek.9 0x0400 0x0475 ../misc/cyrillic.9 0x2000 0x2044 ../misc/genpunc.8 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0x30a1 0x30fe ../jis/katakana.16 0x3041 0x309e ../jis/hiragana.16 0x4e00 0x4fff ../gb/FangSong.4e00.16 0x5000 0x51ff ../gb/FangSong.5000.16 0x5200 0x53ff ../gb/FangSong.5200.16 0x5400 0x55ff ../gb/FangSong.5400.16 0x5600 0x57ff ../gb/FangSong.5600.16 0x5800 0x59ff ../gb/FangSong.5800.16 0x5a00 0x5bff ../gb/FangSong.5a00.16 0x5c00 0x5dff ../gb/FangSong.5c00.16 0x5e00 0x5fff ../gb/FangSong.5e00.16 0x6000 0x61ff ../gb/FangSong.6000.16 0x6200 0x63ff ../gb/FangSong.6200.16 0x6400 0x65ff ../gb/FangSong.6400.16 0x6600 0x67ff ../gb/FangSong.6600.16 0x6800 0x69ff ../gb/FangSong.6800.16 0x6a00 0x6bff ../gb/FangSong.6a00.16 0x6c00 0x6dff ../gb/FangSong.6c00.16 0x6e00 0x6fff ../gb/FangSong.6e00.16 0x7000 0x71ff ../gb/FangSong.7000.16 0x7200 0x73ff ../gb/FangSong.7200.16 0x7400 0x75ff ../gb/FangSong.7400.16 0x7600 0x77ff ../gb/FangSong.7600.16 0x7800 0x79ff ../gb/FangSong.7800.16 0x7a00 0x7bff ../gb/FangSong.7a00.16 0x7c00 0x7dff ../gb/FangSong.7c00.16 0x7e00 0x7fff ../gb/FangSong.7e00.16 0x8000 0x81ff ../gb/FangSong.8000.16 0x8200 0x83ff ../gb/FangSong.8200.16 0x8400 0x85ff ../gb/FangSong.8400.16 0x8600 0x87ff ../gb/FangSong.8600.16 0x8800 0x89ff ../gb/FangSong.8800.16 0x8a00 0x8bff ../gb/FangSong.8a00.16 0x8c00 0x8dff ../gb/FangSong.8c00.16 0x8e00 0x8fff ../gb/FangSong.8e00.16 0x9000 0x91ff ../gb/FangSong.9000.16 0x9200 0x93ff ../gb/FangSong.9200.16 0x9400 0x95ff ../gb/FangSong.9400.16 0x9600 0x97ff ../gb/FangSong.9600.16 0x9800 0x99ff ../gb/FangSong.9800.16 0x9a00 0x9bff ../gb/FangSong.9a00.16 0x9c00 0x9dff ../gb/FangSong.9c00.16 0x9e00 0x9fff ../gb/FangSong.9e00.16 0xfee0 0xff5e latin1.9 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/pelm/unicode.9x24.font 664 sys sys 747684891 1908 24 21 0x0000 0x00FF latin1.9 0x0100 0x017E latineur.9 0x0250 0x02E9 ../lucm/ipa.9 0x0370 0x03F5 ../lucm/greek.9 0x0400 0x0475 ../misc/cyrillic.9 0x2000 0x2044 ../misc/genpunc.9 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2100 0x2138 ../misc/letterlike.8 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0x3000 0x303f ../jis/jis3000.24 0x30a1 0x30fe ../jis/katakana.24 0x3041 0x309e ../jis/hiragana.24 0x4e00 0x4fff ../jis/jis4e00.24 0x5000 0x51ff ../jis/jis5000.24 0x5200 0x53ff ../jis/jis5200.24 0x5400 0x55ff ../jis/jis5400.24 0x5600 0x57ff ../jis/jis5600.24 0x5800 0x59ff ../jis/jis5800.24 0x5a00 0x5bff ../jis/jis5a00.24 0x5c00 0x5dff ../jis/jis5c00.24 0x5e00 0x5fff ../jis/jis5e00.24 0x6000 0x61ff ../jis/jis6000.24 0x6200 0x63ff ../jis/jis6200.24 0x6400 0x65ff ../jis/jis6400.24 0x6600 0x67ff ../jis/jis6600.24 0x6800 0x69ff ../jis/jis6800.24 0x6a00 0x6bff ../jis/jis6a00.24 0x6c00 0x6dff ../jis/jis6c00.24 0x6e00 0x6fff ../jis/jis6e00.24 0x7000 0x71ff ../jis/jis7000.24 0x7200 0x73ff ../jis/jis7200.24 0x7400 0x75ff ../jis/jis7400.24 0x7600 0x77ff ../jis/jis7600.24 0x7800 0x79ff ../jis/jis7800.24 0x7a00 0x7bff ../jis/jis7a00.24 0x7c00 0x7dff ../jis/jis7c00.24 0x7e00 0x7fff ../jis/jis7e00.24 0x8000 0x81ff ../jis/jis8000.24 0x8200 0x83ff ../jis/jis8200.24 0x8400 0x85ff ../jis/jis8400.24 0x8600 0x87ff ../jis/jis8600.24 0x8800 0x89ff ../jis/jis8800.24 0x8a00 0x8bff ../jis/jis8a00.24 0x8c00 0x8dff ../jis/jis8c00.24 0x8e00 0x8fff ../jis/jis8e00.24 0x9000 0x91ff ../jis/jis9000.24 0x9200 0x93ff ../jis/jis9200.24 0x9400 0x95ff ../jis/jis9400.24 0x9600 0x97ff ../jis/jis9600.24 0x9800 0x99ff ../jis/jis9800.24 0x9a00 0x9bff ../jis/jis9a00.24 0x9c00 0x9dff ../jis/jis9c00.24 0x9e00 0x9fff ../jis/jis9e00.24 0xfee0 0xff5e latin1.9 0xfffd 0xfffd fffd.9 /lib/font/bit/pelm/hanc.9.font 664 sys sys 747684941 1941 18 14 0x0000 0x00FF latin1.9 0x0100 0x017E latineur.9 0x0250 0x02E9 ../lucm/ipa.9 0x0370 0x03F5 ../lucm/greek.9 0x0400 0x0475 ../misc/cyrillic.9 0x2000 0x2044 ../misc/genpunc.9 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2100 0x2138 ../misc/letterlike.8 0x215b 0x2183 ../misc/numbforms.9 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2580 0x25ff ../misc/geometric 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0x3000 0x303f ../jis/jis3000.16 0x30a1 0x30fe ../jis/katakana.16 0x3041 0x309e ../jis/hiragana.16 0x4e00 0x4fff ../han/c.4e00.16 0x5000 0x51ff ../han/c.5000.16 0x5200 0x53ff ../han/c.5200.16 0x5400 0x55ff ../han/c.5400.16 0x5600 0x57ff ../han/c.5600.16 0x5800 0x59ff ../han/c.5800.16 0x5a00 0x5bff ../han/c.5a00.16 0x5c00 0x5dff ../han/c.5c00.16 0x5e00 0x5fff ../han/c.5e00.16 0x6000 0x61ff ../han/c.6000.16 0x6200 0x63ff ../han/c.6200.16 0x6400 0x65ff ../han/c.6400.16 0x6600 0x67ff ../han/c.6600.16 0x6800 0x69ff ../han/c.6800.16 0x6a00 0x6bff ../han/c.6a00.16 0x6c00 0x6dff ../han/c.6c00.16 0x6e00 0x6fff ../han/c.6e00.16 0x7000 0x71ff ../han/c.7000.16 0x7200 0x73ff ../han/c.7200.16 0x7400 0x75ff ../han/c.7400.16 0x7600 0x77ff ../han/c.7600.16 0x7800 0x79ff ../han/c.7800.16 0x7a00 0x7bff ../han/c.7a00.16 0x7c00 0x7dff ../han/c.7c00.16 0x7e00 0x7fff ../han/c.7e00.16 0x8000 0x81ff ../han/c.8000.16 0x8200 0x83ff ../han/c.8200.16 0x8400 0x85ff ../han/c.8400.16 0x8600 0x87ff ../han/c.8600.16 0x8800 0x89ff ../han/c.8800.16 0x8a00 0x8bff ../han/c.8a00.16 0x8c00 0x8dff ../han/c.8c00.16 0x8e00 0x8fff ../han/c.8e00.16 0x9000 0x91ff ../han/c.9000.16 0x9200 0x93ff ../han/c.9200.16 0x9400 0x95ff ../han/c.9400.16 0x9600 0x97ff ../han/c.9600.16 0x9800 0x99ff ../han/c.9800.16 0x9a00 0x9bff ../han/c.9a00.16 0x9c00 0x9dff ../han/c.9c00.16 0x9e00 0x9fff ../han/c.9e00.16 0xfee0 0xff5e latin1.9 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/pelm/hanj.9.font 664 sys sys 747684935 1941 18 14 0x0000 0x00FF latin1.9 0x0100 0x017E latineur.9 0x0250 0x02E9 ../lucm/ipa.9 0x0370 0x03F5 ../lucm/greek.9 0x0400 0x0475 ../misc/cyrillic.9 0x2000 0x2044 ../misc/genpunc.9 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2100 0x2138 ../misc/letterlike.8 0x215b 0x2183 ../misc/numbforms.9 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2580 0x25ff ../misc/geometric 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0x3000 0x303f ../jis/jis3000.16 0x30a1 0x30fe ../jis/katakana.16 0x3041 0x309e ../jis/hiragana.16 0x4e00 0x4fff ../han/j.4e00.16 0x5000 0x51ff ../han/j.5000.16 0x5200 0x53ff ../han/j.5200.16 0x5400 0x55ff ../han/j.5400.16 0x5600 0x57ff ../han/j.5600.16 0x5800 0x59ff ../han/j.5800.16 0x5a00 0x5bff ../han/j.5a00.16 0x5c00 0x5dff ../han/j.5c00.16 0x5e00 0x5fff ../han/j.5e00.16 0x6000 0x61ff ../han/j.6000.16 0x6200 0x63ff ../han/j.6200.16 0x6400 0x65ff ../han/j.6400.16 0x6600 0x67ff ../han/j.6600.16 0x6800 0x69ff ../han/j.6800.16 0x6a00 0x6bff ../han/j.6a00.16 0x6c00 0x6dff ../han/j.6c00.16 0x6e00 0x6fff ../han/j.6e00.16 0x7000 0x71ff ../han/j.7000.16 0x7200 0x73ff ../han/j.7200.16 0x7400 0x75ff ../han/j.7400.16 0x7600 0x77ff ../han/j.7600.16 0x7800 0x79ff ../han/j.7800.16 0x7a00 0x7bff ../han/j.7a00.16 0x7c00 0x7dff ../han/j.7c00.16 0x7e00 0x7fff ../han/j.7e00.16 0x8000 0x81ff ../han/j.8000.16 0x8200 0x83ff ../han/j.8200.16 0x8400 0x85ff ../han/j.8400.16 0x8600 0x87ff ../han/j.8600.16 0x8800 0x89ff ../han/j.8800.16 0x8a00 0x8bff ../han/j.8a00.16 0x8c00 0x8dff ../han/j.8c00.16 0x8e00 0x8fff ../han/j.8e00.16 0x9000 0x91ff ../han/j.9000.16 0x9200 0x93ff ../han/j.9200.16 0x9400 0x95ff ../han/j.9400.16 0x9600 0x97ff ../han/j.9600.16 0x9800 0x99ff ../han/j.9800.16 0x9a00 0x9bff ../han/j.9a00.16 0x9c00 0x9dff ../han/j.9c00.16 0x9e00 0x9fff ../han/j.9e00.16 0xfee0 0xff5e latin1.9 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/pelm/unicode.8.font 664 sys sys 767901808 1982 14 11 0x0000 0x00FF latin1.8 0x0100 0x017E latineur.8 0x0250 0x02E9 ../lucm/ipa.9 0x0370 0x03F5 ../lucm/greek.9 0x0400 0x0475 ../misc/cyrillic.9 0x2000 0x2044 ../misc/genpunc.9 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2100 0x2138 ../misc/letterlike.8 0x215b 0x2183 ../misc/numbforms.9 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2580 0x25ff ../misc/geometric 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0x3000 0x303f ../jis/jis3000.16 0x30a1 0x30fe ../jis/katakana.16 0x3041 0x309e ../jis/hiragana.16 0x4e00 0x4fff ../jis/jis4e00.16 0x5000 0x51ff ../jis/jis5000.16 0x5200 0x53ff ../jis/jis5200.16 0x5400 0x55ff ../jis/jis5400.16 0x5600 0x57ff ../jis/jis5600.16 0x5800 0x59ff ../jis/jis5800.16 0x5a00 0x5bff ../jis/jis5a00.16 0x5c00 0x5dff ../jis/jis5c00.16 0x5e00 0x5fff ../jis/jis5e00.16 0x6000 0x61ff ../jis/jis6000.16 0x6200 0x63ff ../jis/jis6200.16 0x6400 0x65ff ../jis/jis6400.16 0x6600 0x67ff ../jis/jis6600.16 0x6800 0x69ff ../jis/jis6800.16 0x6a00 0x6bff ../jis/jis6a00.16 0x6c00 0x6dff ../jis/jis6c00.16 0x6e00 0x6fff ../jis/jis6e00.16 0x7000 0x71ff ../jis/jis7000.16 0x7200 0x73ff ../jis/jis7200.16 0x7400 0x75ff ../jis/jis7400.16 0x7600 0x77ff ../jis/jis7600.16 0x7800 0x79ff ../jis/jis7800.16 0x7a00 0x7bff ../jis/jis7a00.16 0x7c00 0x7dff ../jis/jis7c00.16 0x7e00 0x7fff ../jis/jis7e00.16 0x8000 0x81ff ../jis/jis8000.16 0x8200 0x83ff ../jis/jis8200.16 0x8400 0x85ff ../jis/jis8400.16 0x8600 0x87ff ../jis/jis8600.16 0x8800 0x89ff ../jis/jis8800.16 0x8a00 0x8bff ../jis/jis8a00.16 0x8c00 0x8dff ../jis/jis8c00.16 0x8e00 0x8fff ../jis/jis8e00.16 0x9000 0x91ff ../jis/jis9000.16 0x9200 0x93ff ../jis/jis9200.16 0x9400 0x95ff ../jis/jis9400.16 0x9600 0x97ff ../jis/jis9600.16 0x9800 0x99ff ../jis/jis9800.16 0x9a00 0x9bff ../jis/jis9a00.16 0x9c00 0x9dff ../jis/jis9c00.16 0x9e00 0x9fff ../jis/jis9e00.16 0xfee0 0xff5e latin1.8 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/lucidasans 20000000775 sys sys 795385350 0 /lib/font/bit/lucidasans/NOTICE 444 sys sys 795129299 56 Lucida ® fonts Copyright © 1985 Bigelow & Holmes Inc. /lib/font/bit/lucidasans/lsr.14 664 sys sys 745290221 4698 0 0 0 1628 15 €æ €6Á’ †Æ`† €f́ƒÌÀ963 €ÆƁðüÁÀ €À‡ô0Æ` D N  0 U Õ ß : D N X b l ƒ " , 6 @ 15 12 0x0000 0x00FF lsr.14 0x0100 0x017E ../lucm/latineur.9 0x0250 0x02E9 ../lucm/ipa.9 0x0370 0x03F5 ../lucm/greek.9 0x0400 0x0475 ../lucm/cyrillic.9 0x2000 0x2044 ../lucm/genpunc.9 0x2070 0x208E ../lucm/supsub.9 0x20A0 0x20AA ../lucm/currency.9 0x2100 0x2138 ../misc/letterlike.8 0x215b 0x2183 ../misc/numbforms.9 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf /lib/font/bit/lucm 20000000775 sys sys 734583836 0 /lib/font/bit/lucm/latin1.9 664 sys sys 793492278 5958 0 0 0 2304 15 caŸÆ €   15 13 0x0000 0x00FF latin1.9 /lib/font/bit/lucm/unicode.9.font 664 sys sys 747685054 1916 17 14 0x0000 0x00FF latin1.9 0x0100 0x017E latineur.9 0x0250 0x02E9 ipa.9 0x0370 0x03F5 greek.9 0x0400 0x0475 cyrillic.9 0x2000 0x2044 genpunc.9 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2100 0x2138 ../misc/letterlike.8 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2580 0x25ff ../misc/geometric 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0x3000 0x303f ../jis/jis3000.16 0x30a1 0x30fe ../jis/katakana.16 0x3041 0x309e ../jis/hiragana.16 0x4e00 0x4fff ../jis/jis4e00.16 0x5000 0x51ff ../jis/jis5000.16 0x5200 0x53ff ../jis/jis5200.16 0x5400 0x55ff ../jis/jis5400.16 0x5600 0x57ff ../jis/jis5600.16 0x5800 0x59ff ../jis/jis5800.16 0x5a00 0x5bff ../jis/jis5a00.16 0x5c00 0x5dff ../jis/jis5c00.16 0x5e00 0x5fff ../jis/jis5e00.16 0x6000 0x61ff ../jis/jis6000.16 0x6200 0x63ff ../jis/jis6200.16 0x6400 0x65ff ../jis/jis6400.16 0x6600 0x67ff ../jis/jis6600.16 0x6800 0x69ff ../jis/jis6800.16 0x6a00 0x6bff ../jis/jis6a00.16 0x6c00 0x6dff ../jis/jis6c00.16 0x6e00 0x6fff ../jis/jis6e00.16 0x7000 0x71ff ../jis/jis7000.16 0x7200 0x73ff ../jis/jis7200.16 0x7400 0x75ff ../jis/jis7400.16 0x7600 0x77ff ../jis/jis7600.16 0x7800 0x79ff ../jis/jis7800.16 0x7a00 0x7bff ../jis/jis7a00.16 0x7c00 0x7dff ../jis/jis7c00.16 0x7e00 0x7fff ../jis/jis7e00.16 0x8000 0x81ff ../jis/jis8000.16 0x8200 0x83ff ../jis/jis8200.16 0x8400 0x85ff ../jis/jis8400.16 0x8600 0x87ff ../jis/jis8600.16 0x8800 0x89ff ../jis/jis8800.16 0x8a00 0x8bff ../jis/jis8a00.16 0x8c00 0x8dff ../jis/jis8c00.16 0x8e00 0x8fff ../jis/jis8e00.16 0x9000 0x91ff ../jis/jis9000.16 0x9200 0x93ff ../jis/jis9200.16 0x9400 0x95ff ../jis/jis9400.16 0x9600 0x97ff ../jis/jis9600.16 0x9800 0x99ff ../jis/jis9800.16 0x9a00 0x9bff ../jis/jis9a00.16 0x9c00 0x9dff ../jis/jis9c00.16 0x9e00 0x9fff ../jis/jis9e00.16 0xfee0 0xff5e latin1.9 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/lucm/NOTICE 664 sys sys 795129149 56 Lucida ® fonts Copyright © 1985 Bigelow & Holmes Inc. /lib/font/bit/lucm/latineur.9 664 sys sys 734583835 3009 0 0 0 1143 15 ~ ÀÂp0†áƒø`þc1˜Ìf3ŒÆc1˜Ìm¶ ˜Æf  0 0 0 497 15 15 13 n   0 0 0 279 15 0 0 0 1239 15 Ûm¶ØîîFÆÇ9h á±±˜Ìa ƒ€aüÆ3Æ`c 1˜ÀÆ @ J f  @ J  á  Š 0 0 0 105 15 ` 15 13 0x0000 0x00FF latin1.9 0x0100 0x017E latineur.9 0x0250 0x02E9 ipa.9 0x0370 0x03F5 greek.9 0x0400 0x0475 cyrillic.9 0x2000 0x2044 genpunc.9 0x2070 0x208E supsub.9 0x20A0 0x20AA currency.9 0x2190 0x21EA ../misc/arrows 0x2200 0x227F ../misc/math1 0x2280 0x22F1 ../misc/math2 0x2300 0x232C ../misc/tech 0x2500 0x257F ../misc/chart 0x2580 0x25ff ../misc/geometric 0x2600 0x266F ../misc/ding 0x2700 0x27BF ../misc/zapf 0xfee0 0xff5e latin1.9 0xfffd 0xfffd ../pelm/fffd.9 /lib/font/bit/lucm/greek.9 664 sys sys 747684650 2646 0 0 0 927 15 0 6Çæ`0Æ>Æ61°dÃ> gñƒÀ,cfcŒ1šÇƶØÀÆÃ1¶Í„ðÀ`0km° Œ1;m¶˜Àc€Á°0Ãa† À  0 0 0 904 15 < Çðü q  /lib/font/bit/misc/README 664 sys sys 734583818 1278 All the subfonts in this directory are based on characters in the X distribution from MIT. - Rob Pike, AT&T Bell Laboratories /* *  © 1989 Massachusetts Institute of Technology * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that * the above copyright notice appear in all copies and that both that * copyright notice and this permission notice appear in supporting * documentation, and that the name of M.I.T. not be used in advertising or * publicity pertaining to distribution of the software without specific, * written prior permission. M.I.T. makes no representations about the * suitability of this software for any purpose. It is provided "as is" * without express or implied warranty. * * M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL M.I.T. * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ /lib/font/bit/misc/ipa.8 664 sys sys 734583818 2991 0 0 0 1046 15 `ÀÁƒáàÀ`0qù˜Äp~€ár၀v8OŒÙáø`øÁ˜~ c3˜ÜpÌ€€ 15 11 C Z ‰  3 E O Y • Ÿ Þ    ©   0 0 0 981 14 ™™¬ 5 ? I S ñ  3 Q ‚ ’ š Ö à ð ú   ! 6 S ]  § ± Ú ï     H R \ f p ± Ã Í 0 0 0 1110 22 À 1@p€Áƒ 1 1Áü ÀþsÿÀyÿùÿø~~óññãŽx| V 0 0 0 464 14 € 0 0 0 479 16 € ü0 A°x í [ e 0 0 0 22 13 0 0 0 0 36 16 0 0 0 1272 14 @ €ü@@ 0 0 0 1229 22 ƒ c1˜0cÆ89ÁÎppqÁÇ p áÀq¬s°iÀ<À0`· Œ –   ª j t A K U _  ¡ « Ô Þ ñ d n x ‚ Ë Õ % w  ‹ • Ÿ © 0 0 0 1164 22 cùƒ ‚Ÿÿü¿åáခCf0C0 u  ‰ “  § º Ä  — ¡ Ç Ñ ó ý 4 > H R \ f p †    0 0 0 387 15 % p€ B@ € ÿ 0 0 0 2048 14 €€€ ÿ€þ€þ€ÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿþÿ € 0 0 0 1616 14 ÿÿ ðð°°  0 0 0 972 18 €‚0ð€ ƒ†0ŒÌÍ1œÌÿ, þ0{çÆÌÍñüÌÿ8 ÿÿ€ ž Ã Ì 0 0 0 471 18  /acme/acid 20000000775 sys sys 792866886 0 /acme/acid/Acid 775 sys sys 771560385 111 #!/bin/rc if(~ $#* 0){ echo usage: Acid pid >[2=1] exit usage } win /acme/acid/$cputype/Acid acid -l acme $* /acme/acid/guide 444 sys sys 744853274 38 Acid pid Acid -l alef -l symsfile pid /acme/acid/readme 444 sys sys 757483747 544 Capital A Acid is a rudimentary acme interface to the debugger acid. It uses a win to provide an interactive window for acid. In that window, a couple of extra acme-specific features are enabled: w(command) runs the command and places its output in a new window. e.g. w(lstk()) places the stack trace in a distinct window. Also, in any such window, text executed with button 2 is presented as input to acid in the main Acid window. Thus, for example, one may evaluate variables presented in a stack trace by `executing' it with button 2. /acme/acid/386 20000000775 sys sys 744852430 0 /acme/acid/386/Acid 775 sys sys 796755110 70823 / tõ‰T$0‰$¹|q t#ž t ‹Pp ‰L$‹L$‰L$èy ‰Ø‹L$9Ë|ЋD$ ƒÄÁì t èZ  L$ƒù %‹Aƒø  ‰ $èÖþÿÿ1Àëîƒì ‹D$‰$èŠþÿÿ‹T$‹Bƒø |ž8s |žHs u ƒ%`p uƒ%`p ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû  ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø ÁážXw ž žÿÿÿÿé_ÿÿÿ¶„$” ƒø tB9Ú|㍄$” Ý0s }‰ÑÁážžu æ$M p8ä.s22 °í.frame Œás ˆáeq ábuf „áe2 Ôemalloc ÔWin_wslave rite  _init án Ú yÚ  frame   ðf 6 ú ár  ái A }ú Ú …Œ ŽËAŒ‘‚†AŒBŒ•°‹Œ„—ŸƒŽ‹‹¢DŒ– ‹F„ ‚Š–ˆA…‚ž‡A†‡A”¢A†‡A—‡A—«CƒŠAŽ‚„»‡Œ‡Aš‡Aš†QŸ¯AŒ€‹A“АBœ„†C£‰„†‡A—«AŒ˜‚”£AŒ‚‹ŠA†ˆCœ‹’‡Š‹ˆE¡A…Ÿ†‡AŽ”†‡Cއ‡CŽƒ‡CŠ†ŠEŠŠAŠ‡”‚„—„AŒ‡C—‚”‡„‹…ˆD³—‚‘’’’’’‰AƒŒBºŽŠ‘ŒA…–šA†¶†Dƒ ‡AŽŽŽCˆœ²„†Ž‡”EC„ ‡Hžƒ‡ŽŽ'ƒ]‹E††‚Œ‡AžŽG‚„A‡\‚„„š†‡B‚‚‚„E„KžE„W‚Ž ‡Hˆƒ‰ŽŽ'ƒ]‹E††‚Œ‡AžŽG‚„A‡\‚„„††‡B‚‚‚„E„KžE!‚ ‚ €‚‡Bˆ ˆG…C‰ƒU…‚†‹‚„A…‚’‰†B›ˆAŒHƒ †„ ƒI‚ˆC‰Cƒ‰y‚Ž ‡K‚†„„†‰ŠAŽŽƒƒK‡Gˆƒ‰ŽŽƒ H„‚‡„C‡ƒ„ƒ‚ŽŽ†•B„E„†•B„E„ ‚Œ“‡B…‚ƒ‚D‚†‡ƒA‰‰†‡ƒA‰ ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ /acme/edit/d 775 sys sys 738284478 91 #!/bin/rc if(! ~ $#* 0){ echo usage: d >[1=2] exit usage } exec /acme/edit/$cputype/c '' /acme/edit/guide 444 sys sys 738179405 134 e file | x '/regexp/' | c 'replacement' e file:'0,$' | x '/.*word.*\n/' | p -n e file | pipe command args ... New /absolute/file/name /acme/edit/readme 444 sys sys 785442123 1157 The programs collected in /acme/edit offer a sam-like command interface to acme windows. The guide file /acme/edit/guide holds templates for several editing operations implemented by external programs. These programs, composed in a pipeline, refine the sections of a file to be modified. Thus in sam when one says x/.*\n/ g/foo/ p in /acme/edit one runs x '/.*\n/' | g '/foo/' | p The e command, unrelated to e in sam, disambiguates file names, collects lists of names, etc., and produces input suitable for the other tools. For example: e /usr/rob/acme:'0,$' | x /oldname/ | c /newname/ changes oldname to newname in all the files loaded in acme whose names match the literal text /usr/rob/acme. The commands in /acme/edit are e x g c d p pipe (like sam's | , which can't be used for syntactic reasons) p takes a -n flag analogous to grep's -n. There is no s command. e has a -l flag to produce line numbers instead of the default character numbers. Its implementation is poor but sufficient for the mundane job of recreating the occasional line number for tools like acid; its use with the other commands in this directory is discouraged. /acme/edit/386 20000000775 sys sys 793212354 0 /acme/edit/386/c 775 sys sys 796755136 51947 ‰Ø‹L$9Ë|ЋD$ ƒÄÃìD‹  D$|‰$ž€b  ‰ÙÁéó¥ƒã‰Ùó€‹D$Ãßރïƒîý‰ÙÁéƒãó¥ƒÇƒÆ‰Ùó€‹D$ËL$ ƒù & ‰Áƒø ˆ‰ÐB•¶È•ˆNƒþ ‰‰ÐƒÂ‰0ƒíƒý |žHa |žXa u ƒ%L` uƒ%L` ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø ÁážÀc ž ‹T$ÝD$Ø` Ýha }‰ÑÁឈc nomark æ$M âwbufs  n ú   Ú ðlk yÚ ú   °Ú ú ár  ái 7 frame ðd …H–™ƒƒ‹]™‡‰E”P‰DŽŽ’¡”‹A‹Ÿ”‹A‹Ÿ–‹A’¢AªAŒ±A˜aC‹„A‘A‹„|‹ †¡”‹A‹Ÿ–‹A’žAŒÏF­‡Ž• „F˜€AŒŽŽ’¡c™„‹„F‡B’…M‹B’‹ „F¡‚†‡„W‰‰¥ „H‰Š…‰‰†‚Š ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ ‰Ø‹L$9Ë|ЋD$ ƒÄÃìD‹ „$˜ 5 è” YA1 è7 4ы ‰ $è  $ $‰$èûÿÿ‹L$‹A‰D$‰Èÿ@‰È‰ $è.ûÿÿ‹D$ƒÄ Ãƒì ‹D$‰$èÞúÿÿ‹L$‰ÈÿH‹A‰D$‰È‰ $èýúÿÿ‹D$ƒÄ Ãì‹D$‹@ƒÄÃì‹t$‹\$ ‹T$ ˆ‰ÐB•¶È•ˆNƒþ ‰‰ÐƒÂ‰0ƒíƒý |žpq |ž€q u ƒ%Hp uƒ%Hp ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû  ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø Ááž$† ž žÿÿÿÿé_ÿÿÿ¶„$” ƒø tB9Ú|㍄$” Ýhq }‰ÑÁឈt nomark æ$M proc   ú   Pú rame Ú  in Ú k_canlock   Ú une   ú ár  ái A }ú Ú ‡H°‹AŒ˜§AŒ›‡ˆÉñ‹Ž•±¬BŒ‡‡ †H‡B²ƒ‡¡AŒ¬AŒœAŒŽA†iŒ„ „F¡‚†‡„W‰‰¥ „H‰Š…‰‰†‚Š ‡Hˆƒ‰ŽŽ'ƒ]‹E††‚Œ‡AžŽG‚„A‡\‚„„††‡B‚‚‚„E„KžE!‚ ‚ €‚‡Bˆ ˆG…C‰ƒU…‚†‹‚„A…‚’‰†B›ˆAŒHƒ †„ ƒI‚ˆC‰Cƒ‰y‚Ž ‡K‚†„„†‰ŠAŽŽƒƒK‡Gˆƒ‰ŽŽƒ H„‚‡„C‡ƒ„ƒ‚ŽŽ†•B„E„†•B„E„ ‚Œ“‡B…‚ƒ‚D‚†‡ƒA‰‰†‡ƒA‰ ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ ‰Ø‹L$9Ë|ЋD$ ƒÄÃìD‹ ʼnЋT$pл u!‹C ‰Ñ9Â}ÿ„$  ƒ ƒà? ˆ‰ÐB•¶È•ˆNƒþ ‰‰ÐƒÂ‰0ƒíƒý |žTa |žda u ƒ%T` uƒ%T` ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø Áážžc ž ‹T$ÝD$Ø` ÝLa }‰ÑÁកc æ$M v argc r_offset  ú   ÔBiobufhdr_ungetrune  1   Ú óú Ú  ú ár  ái 8 frame ðd ‹¥N™‡AŒJœƒB€‰H ‹Bšš[˜€AŒŽŽ’œŽrˆ†‡„ ¡ž‰C§“‹‹ „F¡‚†‡„W‰‰¥ „H‰Š…‰‰†‚Š ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ ‰Ø‹L$9Ë|ЋD$ ƒÄÃìD‹ „$€ $èp  ‰ÙÁéó¥ƒã‰Ùó€‹D$Ãßރïƒîý‰ÙÁéƒãó¥ƒÇƒÆ‰Ùó€‹D$ËL$ ƒù & ‰Áƒø ˆ‰ÐB•¶È•ˆNƒþ ‰‰ÐƒÂ‰0ƒíƒý |žPa |ž`a u ƒ%T` uƒ%T` ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø Áកc ž ‹T$ÝD$Ø` Ýpa }‰ÑÁážlc æ$M 0æqsort.l Åú <ás  ú   Ú ðlk Ôread  ú ú ár  ái 7 frame ðd ™‹A•žAŒÏF­‡Ž• „F˜§AŒŽŽ•€c™„‹„F‡B’…M‹B’‹kˆ„ „F¡‚†‡„W‰‰¥ „H‰Š…‰‰†‚Š ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ ‰Ø‹L$9Ë|ЋD$ ƒÄÃìD‹ „$„ $èM  ‰ÙÁéó¥ƒã‰Ùó€‹D$Ãßރïƒîý‰ÙÁéƒãó¥ƒÇƒÆ‰Ùó€‹D$ËL$ ƒù & ‰Áƒø ˆ‰ÐB•¶È•ˆNƒþ ‰‰ÐƒÂ‰0ƒíƒý |žPa |ž`a u ƒ%T` uƒ%T` ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø Áážøc ž ‹T$ÝD$Ø` Ýpa }‰ÑÁážÀc æ$M ú   Ú ðlk yÚ ú   °Ú ú ár  ái 7 frame ðd •©ƒB™S„U„‹H„ŒšAŒK„N­Ž„ „F¡‚†‡„W‰‰¥ „H‰Š…‰‰†‚Š ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ ‰Ø‹L$9Ë|ЋD$ ƒÄÃìD‹ D$t‰$ž\c $ˆ  ‰ÙÁéó¥ƒã‰Ùó€‹D$Ãßރïƒîý‰ÙÁéƒãó¥ƒÇƒÆ‰Ùó€‹D$ËL$ ƒù & ‰Áƒø ˆ‰ÐB•¶È•ˆNƒþ ‰‰ÐƒÂ‰0ƒíƒý |žLa |ž\a u ƒ%P` uƒ%P` ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø Áណc ž ‹T$ÝD$Ø` Ýla }‰ÑÁáž|c æ$M âwbufs  0  ú   Ú ðlk yÚ ú   °Ú ú ár  ái 7 frame ðd „F˜€AŒŽŽ’¡c™„‹„F‡B’…M‹B’‹b•E„ „F¡‚†‡„W‰‰¥ „H‰Š…‰‰†‚Š ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ ‰Ø‹L$9Ë|ЋD$ ƒÄÃìD‹ D$x‰$žhc ‰ñ‰u¶ƒø  ‰ÙÁéó¥ƒã‰Ùó€‹D$Ãßރïƒîý‰ÙÁéƒãó¥ƒÇƒÆ‰Ùó€‹D$ËL$ ƒù & ‰Áƒø ˆ‰ÐB•¶È•ˆNƒþ ‰‰ÐƒÂ‰0ƒíƒý |žLa |ž\a u ƒ%P` uƒ%P` ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø Áណc ž ‹T$ÝD$Ø` Ýla }‰ÑÁáž|c nomark æ$M 0æqsort.l Åú 0 ú   Ú ðlk yÚ ú   °Ú ú ár  ái 7 frame ðd ŽŽ’¡c™„‹„F‡B’…M‹B’‹ „F¡‚†‡„W‰‰¥ „H‰Š…‰‰†‚Š ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ ‰Ø‹L$9Ë|ЋD$ ƒÄÃìD‹ D$x‰$žhc ‰ñ‰u¶ƒø  ‰ÙÁéó¥ƒã‰Ùó€‹D$Ãßރïƒîý‰ÙÁéƒãó¥ƒÇƒÆ‰Ùó€‹D$ËL$ ƒù & ‰Áƒø ˆ‰ÐB•¶È•ˆNƒþ ‰‰ÐƒÂ‰0ƒíƒý |žLa |ž\a u ƒ%P` uƒ%P` ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø Áណc ž ‹T$ÝD$Ø` Ýla }‰ÑÁáž|c nomark æ$M 0æqsort.l Åú 0 ú   Ú ðlk yÚ ú   °Ú ú ár  ái 7 frame ðd ŽŽ’¡c™„‹„F‡B’…M‹B’‹ „F¡‚†‡„W‰‰¥ „H‰Š…‰‰†‚Š ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ /acme/bin/adiff 775 sys sys 751998706 442 #!/bin/rc if(! ~ $#* 2){ echo >[1=2] usage: adiff file1 file2 exit usage } dir = /mnt/8œ if(! test -f $dir/cons) dir = /mnt/term/$dir id=`{cat $dir/new/ctl} id=$id(1) l=$1 r=$2 if (test -d $1) l=$1/`{basename $2} if not if (test -d $2) r=$2/`{basename $1} echo 'name '^`{pwd}^/-diff-$l > $dir/$id/ctl diff $1 $2 | awk '/^[1-9]/ {sub("[acd]", " & '$r':"); sub("^", "'$l':", $0)} {print $0}' > $dir/$id/body echo clean > $dir/$id/ctl /acme/bin/agrep 775 sys sys 769479822 37 #!/bin/rc exec grep -n $* /dev/null /acme/bin/aspell 775 sys sys 792026480 821 #!/bin/rc spellflags=() fflag='' for(x){ switch($x){ case -[bcvx] spellflags=($spellflags $x) case -f fflag=$x case * if(~ $fflag -f) { spellflags=($spellflags -f $x) fflag='' } if not args = ($args $x) } } dir = /mnt/8œ if(! test -f $dir/cons) dir = /mnt/term/$dir id=`{cat $dir/new/ctl} id=$id(1) if(~ $#args 1 && ~ $args /*){ adir = `{basename -d $args} args = `{basename $args} echo 'name '^$adir^/-spell > $dir/$id/ctl cd $adir } if not { echo 'name '^`{pwd}^/-spell > $dir/$id/ctl } { echo noscroll if(~ $#args 0) /acme/bin/$cputype/spout | sort -t: -u +2 | sort -t: +1.1n | aux/sprog -a $spellflags > $dir/$id/body if not for(i in $args) /acme/bin/$cputype/spout $i | sort -t: -u +2 | sort -t: +1.1n | aux/sprog -a $spellflags > $dir/$id/body echo clean }> $dir/$id/ctl /acme/bin/guide 444 sys sys 794005773 63 win new command ... aspell file adiff file1 file2 adict -d oed /acme/bin/new 775 sys sys 795930076 180 #!/bin/rc if(~ $#* 0) exit id=`{cat /mnt/acme/new/ctl} id=$id(1) echo 'name '^`{pwd}^/-^`{basename $1} > /mnt/acme/$id/ctl $* > /mnt/acme/$id/body echo clean > /mnt/acme/$id/ctl /acme/bin/readme 444 sys sys 757483520 1089 This directory and its subdirectory $cputype are always mounted at the end of /bin for programs run from acme. They hold a collection of small acme-specific applications: win [command] Create an acme window to serve as a terminal, analogous to xterm. By default, it runs the shell, rc, but it works with any interactive program, e.g. hoc. Within the window, commands executed with button 2 are 'executed' by sending their text to the standard input of the command, appending a newline if necessary. new command Run the non-interactive command, placing its standard and diagnostic output in a new window. aspell file Run spell on the file, labeling the output with addresses so misspelled words can be found in context using button 3. adiff file1 file2 Run diff on the files, labeling the output with addresses so changes can be found in context using button 3. adict Interactive version of dict(1). Button 3 looks up words and may be applied to any word in any adict window. When a word has multiple definitions, indicate the number (as in acme Mail) to disambiguate. /acme/bin/386 20000000775 sys sys 779240571 0 /acme/bin/386/win 775 sys sys 796755126 70689 ü ‰ $¹/ t C t ‰Ø‹L$9Ë|ЋD$ ƒÄÁìœ t·D$ƒøt‹\$Ëë©ÿ”p t=‰è‰Ùض …µ ‹ p t·D$ ƒøtBé+ÿÿÿÿ ƒŒ$š u7‹„$Ì ‰$èÊ %‹Aƒø $žË9 $ |ž4q |žDq u ƒ%p uƒ%p ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø Ááž{ ž ‰Ð‰$è5áÿÿžÿÿÿÿÄ˜ ÖÿÿžÿÿÿÿƒÄ ËD$‰À žÿÿÿÿé_ÿÿÿ¶„$” ƒø tB9Ú|㍄$” Ý,q }‰ÑÁឬz 0 æ$M ä.s51 lag fd Dáe2 ú val  ú  frame ár Ú ú  ú ár  ái 5 _Ú  ú  ú ‚†A„ ƒJˆ‹Fžƒ†Eš‹Ž„ˆˆE£ˆAˆ†…‚„—„AŒ‡C—‚”‡„‹…ˆD³—‚‘’’’’’‰AƒŒBºŽŠ‘ŒA‚„»‡…™Œ „LCÃ!„CŠd„$‘ ‚Ž„ªˆA«„C—A‹ƒ„ ªˆLŸŒŒž£AŒ£AŒ¡ŒŸj„ƒ –BšD—…‰„N†Œ‚‚‰A‡ƒK‹A K„‰C‹‹B…B‰E‰‚“M— “A…A‡JŸ™†††ƒQŸŠA’ ‡Hˆƒ‰ŽŽ'ƒ]‹E††‚Œ‡AžŽG‚„A‡\‚„„††‡B‚‚‚„E„KžE!‚ ‚ €‚‡Bˆ ˆG…C‰ƒU…‚†‹‚„A…‚’‰†B›ˆAŒHƒ †„ ƒI‚ˆC‰Cƒ‰y‚Ž ‡K‚†„„†‰ŠAŽŽƒƒK‡Gˆƒ‰ŽŽƒ H„‚‡„C‡ƒ„ƒ‚ŽŽ†•B„E„†•B„E„ ‚Œ“‡B…‚ƒ‚D‚†‡ƒA‰‰†‡ƒA‰ ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ †KŸœ«‹™„Š‹AƒB‹A‹AˆŒª˜B„ŠDˆB„ uƒû …Cÿÿÿéðþÿÿÿ„$( ¹ ¹ ‰ÙÁéó¥ƒã‰Ùó€‹D$Ãßރïƒîý‰ÙÁéƒãó¥ƒÇƒÆ‰Ùó€‹D$ËL$ ƒù ê f‰D$L$‰ $L$‰L$èhÿÿÿƒÄÃì‹T$ƒú |žÀP |žÐP u ƒ%8P uƒ%8P ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø Áážtt ž ßÿÿÃ1À‰ ݬQ }‰ÑÁណQ æ$M .frame ú  rame  ele   ú ár  e …œ‡‡ „F¡‚†‡„W‰‰¥ „H‰Š…‰‰†‚Š ŠHŠ¥ŠC‰„ƒC…‰…N‚Œ†E„C’Ž„‚šA•‚‹Œ™D‘ˆCŠŒG‚ŠŠ–M‰„ƒP•‡†‚†‚ƒ†ƒƒƒƒ‰ƒU‡ƒ †­Š—L›ƒI”ˆAEŽ„ABއO‹ˆA ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ /acme/mail/mkbox 775 sys sys 738307952 102 #!/bin/rc for(i){ if(! test -f $i){ if(cp /dev/null $i){ chmod 600 $i chmod +al $i } } } /acme/mail/guide 444 sys sys 773005220 79 Mail /mail/box/$user/stored mkbox /mail/box/$user/new_box mail -'x' someaddress/acme/mail/readme 444 sys sys 764921262 1623 Mail is the single program in this directory. Its argument specifies the mail box to read, default /mail/box/$user/mbox. For example, running Mail /mail/box/$user/stored (a line in the guide file) looks at saved mail. Mail maintains a window containing headers for all the messages in the mailbox and monitors the mailbox for new messages. Using button 3 to indicate a message number opens a window on that message. commands in the mailbox window are Put Write the mailbox back to the file (never done automatically) Mail Make a new message window ready to mail someone. Takes argument names analogously to acme's New. Del Exit Mail, after checking that mailbox isn't modified. New messages appear at the top of the window and are highlighted upon arrival. (The messages are numbered oldest to newest, the opposite of regular mail.) Message windows have a simple format: the first line, up to the first tab or newline, holds the sender or, when sending, the addressee. Edit the line to change who the message goes to. Message windows contain the commands Reply Make a new window to compose a reply to this message Delmesg Delete the message from the screen and from the mailbox Del Delete the window, leaving the message in the mailbox Post Send the message to the addressee Save Save to the named mailbox, default/mail/box/$user/stored Save takes a full file name; if that name has no slashes, the file is taken to be in /mail/box/$user and must already exist. Use mkbox in the guide to create target mailboxes in /mail/box/$user. Reply and mail windows contain an obvious subset of the commands. /acme/mail/386 20000000775 sys sys 738307456 0 /acme/mail/386/Mail 775 sys sys 796755170 116674 ‹Š  „§þÿÿ듃ì‹T$‹ŠH uí¶€ø „Pÿÿÿénÿÿÿ‰Å‹C ‰œ$T tõ‰”$( tõ‰Ñ¶ƒø tÌBë¯1ÀëÀ‰$¹@° $‰L$èEt ‰È‰ $èëM $‰Ù‰\$8ƒé A‰L$è­d ‰$žš· tõ‰T$‰$¹Ž· tõ¶ƒø tÝBëÀ1Àëщ$¹ž ‰È‰ $èŠV ‰È‰ $èSV uã‹D$‰$‹ƒ( „ „¬ uB‰”$Œ „"ÿÿÿBéúþÿÿ1Àé ÿÿÿBéÓþÿÿ1Àéðüÿÿƒìž|² Á‰L$Céaþÿÿƒì¹Ž² ‰Ø‹L$9Ë|ЋD$ ƒÄÁì $èR& t ‹C0‰D$‰è‰l$è| $è  Ž‹Bƒø ¿‹@‰D$‹D$‹@ƒÀ(‰D$1ۉ\$‹D$ƒ %‹Aƒø 뀉΃îaƒÆ ésÿÿÿ‰Îƒî0éiÿÿÿœ $Œ$$ |ž(Ž |ž8Ž u ƒ%€° uƒ%€° ÆD$ ‹S1É)щK1í‹C=üÿÿt ‹Cƒø ‰ÊˆHFKƒû ‰Å뱉èÁà‰ÑB¶ ȃèaƒÀ ‰Å뚉èÁà‰ÑB¶ ȃè0‰Åë†1Àéýþÿÿ‰ØC¶ ‹K‰J‰Ø‰Ñ‰SëßBƒú ‰T$$Œ[þÿÿ1Àƒø Áវ ž ‰Ð‰$èÝÿÿžÿÿÿÿÄ˜ |‰$è) |‰è¹ të1ۃû} ƒú t6ƒú t1‰èEˆ‰ñ‹ÿ¶ u ÆE tãƒû t(ƒû0|8ƒû93‰è¹ žÿÿÿÿé_ÿÿÿ¶„$” ƒø tB9Ú|㍄$” Ý Ž }‰ÑÁកº morF æ$M ser.l 34  Pí.frame `ánopen Háeq Tábuf Pát Lás \ána Dáea Ú Dáe2  Ú ú   ˜Ú  Ú nd yÚ Ôread ár   dec ú ár  ái Q   ˜Ú  ú Ú  ÔisNaN ðn  J‹‡‡‹ŠBŸ¥‹„CށšˆC”†‹CŠA•†Dƒ ŠC‘†ŽU‹‹‹†††ÍR — †‹‹‹Š…ŸœC–”„E”Ž„H€¡„… „P¥„N­©†„Œ}ŽA€’D€¡‹œ‹Eª°ˆžA™AŽ*„t‹„K‡„7Š}„ œFž…¡‰ŒJ„I„K‹L„.‚œˆA „ œˆ ω†CށGŠC „Gš¥•I„_¥«„BŒC¥«„fˆA„ ŽH—›‹ŽJš˜ÿƒ‰”KšC–†„Qœ©‹‹ †•“ƒB™Ž…™>©z¢D>ºG™w„2ŽB™™r„>ŒlŒŽC™Œ’D™šŠ€ˆEª‹…›A™‹j„£ª „L„„Šl„,‘†š™C‹„$ƒS®N„š ‡G„[™‚D– •C‹„„H™B•CŠˆ„ žB™D† ˆ„‹‚ ŽC•$ƒa„¡Eƒ™E„A‰Q˜ˆ†A‰ŒœžŸ³Ÿ‹‹]ªŠ… „…™“•ˆ·A„¡¡ŽA‡AŒ•°‹‹‹ŽŠA•‹Ž¬„B¢–•C‹UŒB‹L—¡ž‘€·‹„I°C… † ‘œ€™“L¡€¹Ž„ „E”œ“‹ˆE˜œ“†‡A—«AŒ˜‚”£AŒ‚‹ŠA†ˆCœ‹’‡Š‹ˆE¡A…Ÿ†‡AŽ”†‡Cއ‡CŽƒ‡CŠ†ŠEŠŠAŠ‡”‚„—„AŒ‡C—‚”‡„‹C³—…ˆ‚‘’’’’’‰AƒŒBºŽŠ‘ŒA…–šA†¶†Dƒ ‡AŽŽŽCˆœ²„†Ž‡”EC„ „F¡‚†‡„W‰‰¥ „H‰Š…‰‰†‚Š ‡Hžƒ‡ŽŽ'ƒ]‹E††‚Œ‡AžŽG‚„A‡\‚„„š†‡B‚‚‚„E„KžE„W‚Ž ‡Hˆƒ‰ŽŽ'ƒ]‹E††‚Œ‡AžŽG‚„A‡\‚„„††‡B‚‚‚„E„KžE!‚ ‚ z†‡B‘ƒB„œ‚Œ…†¢B‹† ˆHŸ„ ¯A‚‡B…—‡…F‚O“ˆAŒ„‚Œ…†¢B‹† ˆHŸ„„‘Aš—‡‡O“ˆAŒ„ ˆG…C‰ƒU…‚†‹‚„A…‚’‰†B›ˆAŒHƒ †„ ƒI‚ˆC‰Cƒ‰y‚ˆŽ— ‡K‚ „„‚‡ŠAŽŽƒJ‡G˜ƒ‡ŽŽ J‚‚§“F‚„A‡g‚Ž ‡K‚†„„†‰ŠAŽŽƒƒK‡Gˆƒ‰ŽŽƒ H„‚‡„C‡ƒ„ƒ‚ŽŽ†•B„E„†•B„E„ ‚Œ“‡B…‚ƒ‚D‚†‡ƒA‰‰†‡ƒA‰ ˆBŠ„ŠˆÆ„™ˆDˆ‚„„‡ƒ‚†Ž‚…‡‚‹ŒCŠž«‡‚Œ‰ ‚‹šžšžšž‚‹‡Œ‚…„ ‹I†A‹ˆ¡††‚„A…‚’‰†B¡„A‹Hƒ …AƒˆA…ˆBˆA„ƒD„ŠAƒ…S‡…AˆƒƒN„‡E‡„G„„Y„•C‚„ „Až„Z•A‚„SŽDˆ„]B¥Z†‰AŒƒC„ž…HŽ„J…‡‡BƒA„ƒE„A„ƒO‚šA‚˜„B—…G‚ ‡Š„†F‚„#ƒ^Љ‡†O‡I“‡„OЉ ‡I‰„„††„F„ƒC‡G‹„C‹†‚ˆ—† „G††A„ƒAƒB„ •‰Œ „I‚‡B^„ ƒ`„$„¯‹³„Ck„. „C•ALˆ ‘CƒE‰†B‰AŽ…VŒB‰AŽ…H‹„#†ˆCˆ ƒGˆ†ˆ„ƒ‡ƒ†”‡ˆK‡„Eˆ™ˆ‚„‹“…†ˆ†ƒŠA‰ •„"šH‰†B‰AŽ…`„‘N‰A‹EŠ€‡‰A„ “G…Q„†T„‘W„ X“ŒB‰AŽ…-†‰AŽ…†ª…P„S„M„ B–EŠA„E„…‘šD‡„ ‹E‡A‡‰c„(‰A¯ ‡IŠ„A†Aˆ„A„BŽA„„BŽA¡„ŽMŽA ˜‡‰QB†„C…„C—‹—™„HK„E“H—šE‹A„UHg‹„A’‡ „UŽA„_“«•„c„„]‹Š„ ƒJ„B†Aœƒ‹“…‚‰Š „CƒO„C†A€ˆ‡BE›‹ˆ ŠŠ‰†BŽ‹„…B„G„†Š„CB‰„C†ƒL‰™ˆC„„A……ƒG„